import type { Config } from '../../../types/index.js'; export type PostPhoneTokenValidationData = { phoneNumber: string; token: string; }; export type PostPhoneTokenValidation = (data: PostPhoneTokenValidationData, config?: Config) => Promise;