import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike, InputText } from '../../types/index.js'; /** * Set a note for a contact * * @param userId ID of the user to set the note for * @param note Note text */ export declare function setContactNote(client: ITelegramClient, userId: InputPeerLike, note: InputText): Promise;