/** * @public */ export type DialogType = 'default' | 'alert' | 'success' | 'error'; /** * @public */ export type DialogPosition = 'center' | 'left' | 'right'; /** * Detail payload of the dialog `resize` event. * @public */ export interface ResizeEventDetail { width: number; height: number; } //# sourceMappingURL=dialog.types.d.ts.map