export declare class ArrowButton { /** The callback function for the button */ callback: () => void; /** Set the direction of the arrow button (and the side of the containing element it appears on) */ direction: string; /** Turn the button purple */ purple: boolean; clickHandler(e: any): void; render(): any; }