import * as $dara from '@darabonba/typescript';
export declare class DeleteSmsQualificationRequest extends $dara.Model {
    /**
     * @remarks
     * The review ticket ID. You can obtain the qualification and its corresponding review ticket ID under the current account by calling the [QuerySmsQualificationRecord](~~QuerySmsQualificationRecord~~) operation, or on the [Qualification Management](https://dysms.console.aliyun.com/domestic/text/qualification) page of Domestic Messages in the console.
     *
     * This parameter is required.
     *
     * @example
     * 2001****
     */
    orderId?: number;
    ownerId?: number;
    /**
     * @remarks
     * The qualification ID, which is the ID returned when you [apply for a qualification](~~SubmitSmsQualification~~). You can obtain the qualification ID under the current account by calling the [QuerySmsQualificationRecord](~~QuerySmsQualificationRecord~~) operation, or on the [Qualification Management](https://dysms.console.aliyun.com/domestic/text/qualification) page of Domestic Messages in the console.
     *
     * This parameter is required.
     *
     * @example
     * 10000****
     */
    qualificationGroupId?: number;
    resourceOwnerAccount?: string;
    resourceOwnerId?: number;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
