import * as $dara from '@darabonba/typescript';
export declare class QuerySmsTemplateRequest extends $dara.Model {
    ownerId?: number;
    resourceOwnerAccount?: string;
    resourceOwnerId?: number;
    /**
     * @remarks
     * The template code.
     *
     * - The template code is returned in the response of the [AddSmsTemplate](https://help.aliyun.com/document_detail/121208.html) API.
     *
     * - The template code is available on the [Template Management](https://dysms.console.aliyun.com/domestic/text/template) page.
     *
     * This parameter is required.
     *
     * @example
     * SMS_1525****
     */
    templateCode?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
