import { CaptchaRequest as CaptchaRequest$1, CaptchaResponse as CaptchaResponse$1 } from './index.typings.js'; import '@wix/sdk-types'; interface CaptchaEntity { } interface CaptchaRequest { /** The CAPTCHA token to authorize. */ token?: string; } interface CaptchaResponse { /** Value is `true` when authorization is successful. */ success?: boolean; /** Error information. */ errors?: Errors; } interface Errors { /** ID of error. */ errorId?: number; } interface AssessmentResponse { assessment?: string; } type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function authorize(): __PublicMethodMetaInfo<'POST', {}, CaptchaRequest$1, CaptchaRequest, CaptchaResponse$1, CaptchaResponse>; export { type AssessmentResponse as AssessmentResponseOriginal, type CaptchaEntity as CaptchaEntityOriginal, type CaptchaRequest as CaptchaRequestOriginal, type CaptchaResponse as CaptchaResponseOriginal, type Errors as ErrorsOriginal, type __PublicMethodMetaInfo, authorize };