export declare const DIALOG_SIZES: { small: string; medium: string; large: string; "x-large": string; fullscreen: string; maximum: string; }; export declare type DialogSize = keyof typeof DIALOG_SIZES; /** * This interface describes the options controlling the creation of dialogs. */ export declare class ActionOptions { identifier: string; text: string; onClick: () => void; } export declare class DialogCreationOptions { key: string; size: DialogSize; width: string; height: string; chrome: boolean; header: string; actions: ActionOptions[]; closeOnEscape: boolean; hint: string; }