import * as $dara from '@darabonba/typescript';
export declare class QueryCardSmsTemplateResponseBodyData extends $dara.Model {
    /**
     * @remarks
     * The list of returned templates.
     */
    templates?: {
        [key: string]: any;
    }[];
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class QueryCardSmsTemplateResponseBody extends $dara.Model {
    /**
     * @remarks
     * The status code.
     *
     * * If OK is returned, the request is successful.
     * * For other error codes, see [API error codes](https://help.aliyun.com/document_detail/101346.html).
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * The returned data.
     */
    data?: QueryCardSmsTemplateResponseBodyData;
    /**
     * @remarks
     * The ID of the request, which is a unique identifier generated by Alibaba Cloud for the request. It can be used to troubleshoot and locate issues.
     *
     * @example
     * F655A8D5-B967-440B-8683-DAD6FF8DE990
     */
    requestId?: string;
    /**
     * @remarks
     * Indicates whether the API call was successful. Valid values:
     *
     * - **true**: The call was successful.
     *
     * - **false**: The call failed.
     *
     * @example
     * true
     */
    success?: boolean;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
