import { MessageCreator } from './MessageCreator'; import { ContentTypes, MessageCreatorTypes, SendOptions, SendTypes } from '../../types'; import { Keyboard } from '../Keyboard/Keyboard'; export declare class MessageSend extends MessageCreator { readonly content: ContentTypes; readonly keyboard: Keyboard | null; readonly options: SendOptions; sendType: SendTypes; type: MessageCreatorTypes; /** * Creates a wrapper for send message * @param content Content that you want to send * @param keyboard Keyboard that you want to add to the message * @param options Message options {@link SendOptions} * */ constructor(content: ContentTypes, keyboard?: Keyboard | null, options?: SendOptions); }