export declare class ExitButton { /** The callback function for the button */ callback: () => void; /** Change the colour of the exit button to purple */ purple: boolean; host: HTMLElement; clickHandler(e: any): void; addFocus(): Promise; render(): any; }