import { type FC, type PropsWithChildren } from 'react'; type DialogContextType = { onClickTrigger: () => void; onClickClose: () => void; active: boolean; }; export declare const DialogContext: import("react").Context; export declare const DialogWrapper: FC; export {};