import { MessageCreator } from './MessageCreator'; import { MessageCreatorTypes, SendTypes } from '../../types'; export declare class DeleteChatPhoto extends MessageCreator { readonly chatId?: number | string; sendType: SendTypes; type: MessageCreatorTypes; /** * Delete chat photo * @param chatId Optional. Chat ID where you want to set chat photo. It can be id of group/channel or ID of the user. Current chat id by default * */ constructor(chatId?: number | string); }