import { Node } from './node'; export declare class Button implements Node { private text; private callbackKey; constructor(text: string, callbackKey: string); toXML(): string; }