import { type OnClickPreventableProps } from '../../model/OnClickProps'; import type { OnCloseProps } from '../../model/OnCloseProps'; import { type VNode } from '../../model/VNode'; declare type DialogType = 'sm' | 'lg' | 'xl' | '4xl' | 'none'; declare type DialogPosition = 'center' | 'corner'; export interface DialogProps extends OnCloseProps, OnClickPreventableProps { head?: VNode; maxWidth?: DialogType; position?: DialogPosition; } export declare const Dialog: import("@redneckz/uni-jsx").UNIComponent; export {};