import * as $dara from '@darabonba/typescript'; /** */ export declare class VerifyCaptchaResponseBodyResult extends $dara.Model { /** * @example * true */ verifyResult?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class VerifyCaptchaResponseBody extends $dara.Model { /** * @example * Success */ code?: string; /** * @example * success */ message?: string; /** * @remarks * Id of the request * * @example * 95784F***D39FDC5 */ requestId?: string; result?: VerifyCaptchaResponseBodyResult; /** * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }