import { tl } from '../../../tl/index.js';
import { MaybeArray } from '../../../types/utils.js';
import { ITelegramClient } from '../../client.types.js';
/**
 * Delete your own profile photos
 *
 * @param ids  ID(s) of the photos. Can be file IDs or raw TL objects
 */
export declare function deleteProfilePhotos(client: ITelegramClient, ids: MaybeArray<string | tl.TypeInputPhoto>): Promise<void>;
