import { tl } from '../../../tl/index.js';
import { PartialOnly } from '../../../types/utils.js';
import { ITelegramClient } from '../../client.types.js';
/**
 * Import contacts to your Telegram contacts list.
 *
 * @param contacts  List of contacts
 */
export declare function importContacts(client: ITelegramClient, contacts: PartialOnly<Omit<tl.RawInputPhoneContact, '_'>, 'clientId'>[]): Promise<tl.contacts.RawImportedContacts>;
