import { ErrorUnion, OkUnion } from '../outputs'; /** * Checks phone number confirmation code * @param {Object} params * @param {string} [params.code] - The phone number confirmation code * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type CheckPhoneNumberConfirmationCodeMethod = (params: CheckPhoneNumberConfirmationCodeParams, state?: Record) => Promise; export interface CheckPhoneNumberConfirmationCodeParams { /** The phone number confirmation code */ code?: string; }