import { ErrorUnion, OkUnion } from '../outputs'; /** * Checks the phone number verification code for Telegram Passport * @param {Object} params * @param {string} [params.code] - Verification code * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type CheckPhoneNumberVerificationCodeMethod = (params: CheckPhoneNumberVerificationCodeParams, state?: Record) => Promise; export interface CheckPhoneNumberVerificationCodeParams { /** Verification code */ code?: string; }