/// export type ModalRootProps = { children: React.ReactNode; open?: boolean; onChange?: (open: boolean) => void; }; export declare const Root: { ({ children, open, onChange }: ModalRootProps): JSX.Element; displayName: string; };