import { ITelegramClient } from '../../client.types.js';
/**
 * Set or remove current user's birthday.
 */
export declare function setMyBirthday(client: ITelegramClient, birthday: {
    /** Birthday day */
    day: number;
    /** Birthday month */
    month: number;
    /** Birthday year (optional) */
    year?: number;
} | null): Promise<void>;
