import * as $dara from '@darabonba/typescript';
export declare class CheckMobilesCardSupportRequest extends $dara.Model {
    /**
     * @remarks
     * The list of mobile phone numbers that receive messages.
     *
     * This parameter is required.
     */
    mobiles?: {
        [key: string]: any;
    }[];
    /**
     * @remarks
     * The code of the message template. You can view the template code in the **Template Code** column on the **Templates** tab of the **Go China** page in the Alibaba Cloud SMS console.
     *
     * > Make sure that the message template has been approved.
     *
     * This parameter is required.
     *
     * @example
     * CARD_SMS_****
     */
    templateCode?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
