import * as $dara from '@darabonba/typescript';
export declare class ChangeSignatureQualificationRequest extends $dara.Model {
    /**
     * @remarks
     * The ID of the authorization letter.
     *
     * @example
     * 1000********1234
     */
    authorizationLetterId?: number;
    ownerId?: number;
    /**
     * @remarks
     * The ID of the qualification, which is returned when you apply for it. You can also find this ID on the [Qualification Management](https://dysms.console.aliyun.com/domestic/text/qualification) page in the console for messages to the Chinese mainland.
     *
     * This parameter is required.
     *
     * @example
     * 1*****2
     */
    qualificationId?: number;
    resourceOwnerAccount?: string;
    resourceOwnerId?: number;
    /**
     * @remarks
     * The signature.
     *
     * This parameter is required.
     *
     * @example
     * 阿里云
     */
    signatureName?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
