import { ITelegramClient } from '../../client.types.js'; import { tl } from '../../../tl/index.js'; /** * Get the `InputPeer` by user's phone number. * Useful when an `InputPeer` is needed in Raw API. * * @param phone Phone number of the user * @param force Whether to force re-fetch the peer from the server */ export declare function resolvePhoneNumber(client: ITelegramClient, phone: string, force?: boolean): Promise;