import type { UNIComponent } from '@redneckz/uni-jsx'; import type { OnCloseProps } from '../../model/OnCloseProps'; import type { VNode } from '../../model/VNode'; import type { DialogOptions } from './DialogAction'; export declare function useDialog(Dialog: UNIComponent, initialProps?: Partial): { closeAll: () => void; open: (props: Props & { children?: VNode; }, options?: Partial) => void; close: () => void; };