import { CheckCaptchaType } from "@vkid/captcha"; /** * @ignore */ export interface VKAuthCaptchaSetupData { captcha_sid: string; captcha_img: string; is_refresh_enabled: boolean; } /** * @ignore */ export interface VKAuthCaptchaSuccessData { uuid: string; captcha_sid: string; captcha_key: string; is_sound_captcha: number; } /** * @ignore */ export interface VKNotRobotCaptchaSuccessData { success_token: string; } /** * @ignore */ export declare type VKCaptchaSuccessData = VKAuthCaptchaSuccessData & VKNotRobotCaptchaSuccessData; export declare type BridgeCaptchaData = { captchaCheckType: CheckCaptchaType; captchaUrl?: string; captcha_sid: string; captcha_img: string; captcha_track: string; is_refresh_enabled: boolean; is_sound_captcha_available: boolean; redirect_uri: string; uuid: string; };