import * as $dara from '@darabonba/typescript';
export declare class SendCardSmsResponseBodyData extends $dara.Model {
    /**
     * @remarks
     * The ID of the card message.
     *
     * @example
     * 123
     */
    bizCardId?: string;
    /**
     * @remarks
     * The ID of the digital message.
     *
     * @example
     * 232
     */
    bizDigitalId?: string;
    /**
     * @remarks
     * The ID of the text message.
     *
     * @example
     * 524
     */
    bizSmsId?: string;
    /**
     * @remarks
     * The review status of the card message template.
     *
     * *   **0**: pending approval
     * *   **1**: approved
     * *   **2**: rejected
     *
     * > Unapproved card messages are rolled back.
     *
     * @example
     * 0
     */
    cardTmpState?: number;
    /**
     * @remarks
     * The mobile phone number from which the card message is sent.
     *
     * @example
     * 1390000****
     */
    mediaMobiles?: string;
    /**
     * @remarks
     * The mobile phone number whose card message is rolled back.
     *
     * @example
     * 1390000****
     */
    notMediaMobiles?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class SendCardSmsResponseBody extends $dara.Model {
    /**
     * @remarks
     * The response code.
     *
     * *   If OK is returned, the request is successful.
     * *   Other values indicate that the request fails. For more information, see [Error codes](https://help.aliyun.com/document_detail/101346.html).
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * The data returned.
     */
    data?: SendCardSmsResponseBodyData;
    /**
     * @remarks
     * The request ID.
     *
     * @example
     * F655A8D5-B967-440B-8683-DAD6FF8D28D0
     */
    requestId?: string;
    /**
     * @remarks
     * Indicates whether the request was successful. Valid values:
     *
     * *   **true**
     * *   **false**
     *
     * @example
     * true
     */
    success?: boolean;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
