import * as $dara from '@darabonba/typescript';
export declare class CheckMobilesCardSupportResponseBodyDataQueryResult extends $dara.Model {
    /**
     * @remarks
     * The phone number.
     *
     * @example
     * 1390000****
     */
    mobile?: string;
    /**
     * @remarks
     * Indicates whether card SMS is supported. Valid values:
     *
     * - **true**: Card SMS is supported.
     *
     * - **false**: Card SMS is not supported.
     *
     * @example
     * true
     */
    support?: boolean;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class CheckMobilesCardSupportResponseBodyData extends $dara.Model {
    /**
     * @remarks
     * The list of query results.
     */
    queryResult?: CheckMobilesCardSupportResponseBodyDataQueryResult[];
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class CheckMobilesCardSupportResponseBody extends $dara.Model {
    /**
     * @remarks
     * The request status code.
     * - The value OK indicates that the request was successful.
     * - For information about other error codes, see [Error codes](https://help.aliyun.com/document_detail/101346.html).
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * The returned data.
     */
    data?: CheckMobilesCardSupportResponseBodyData;
    /**
     * @remarks
     * The request ID, which is a unique identifier generated by Alibaba Cloud for the request and can be used to troubleshoot and locate issues.
     *
     * @example
     * 819BE656-D2E0-4858-8B21-B2E477085AAF
     */
    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;
    });
}
