import * as $dara from '@darabonba/typescript';
export declare class AddSmsSignResponseBody extends $dara.Model {
    /**
     * @remarks
     * The HTTP status code.
     *
     * * OK is returned if 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 description of the status code.
     *
     * @example
     * OK
     */
    message?: string;
    /**
     * @remarks
     * The request ID.
     *
     * @example
     * F655A8D5-B967-440B-8683-DAD6FF8DE990
     */
    requestId?: string;
    /**
     * @remarks
     * The signature name.
     *
     * @example
     * 阿里云
     */
    signName?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
