import { BotButton } from './bot-button'; export declare type Order = 'random' | 'ordered' | 'random-exclude'; export interface BotScreen { command: string; description?: string; text?: string; image?: string | string[]; data?: string; order?: string; filter?: string; buttons?: BotButton[][]; handler?: string; event?: string; }