export type Direction = 'vertical' | 'horizontal'; export class DialogProperties { width?: number; height?: number; maxWidth?: number; maxHeight?: number; resizable?: boolean; }