export declare enum KeyboardColor { PRIMARY = "primary", DEFAULT = "default", NEGATIVE = "negative", POSITIVE = "positive" } export default class Keyboard { private obj; constructor(oneTime?: boolean); addButton(label: string, color?: string, payload?: any): this; addRow(): this; toString(): string; }