import { Gui } from './Gui'; import { RpgPlayer } from '../Player/Player'; export interface TitleEntry { id: string; label: string; disabled?: boolean; } export interface TitleGuiOptions { entries?: TitleEntry[]; title?: string; subtitle?: string; version?: string; showPressStart?: boolean; } export interface TitleGuiSelection { id?: string; index?: number; entry?: TitleEntry; } export declare class TitleGui extends Gui { constructor(player: RpgPlayer); open(options?: TitleGuiOptions): Promise; }