import { MessageCreator } from './MessageCreator'; import { BotCommandScope, MessageCreatorTypes, SendTypes } from '../../types'; export declare class DeleteMyCommands extends MessageCreator { readonly scope?: BotCommandScope; readonly languageCode?: string; sendType: SendTypes; type: MessageCreatorTypes; /** * Delete my commands * @param scope Optional. Scope for which you want to delete commands. {@link BotCommandScope} * @param languageCode Optional. A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands * @see https://core.telegram.org/bots/api#deletemycommands * */ constructor(scope?: BotCommandScope, languageCode?: string); }