import { BottomSheetEvents } from "../web/bottom-sheet"; import { CustomElementProps } from "./custom-element-props"; type BottomSheetDialogManagerProps = CustomElementProps<{}, BottomSheetEvents>; declare module "react/jsx-runtime" { namespace JSX { interface IntrinsicElements { "bottom-sheet-dialog-manager": BottomSheetDialogManagerProps; } } } export default function BottomSheetDialogManager({ children, ...props }: BottomSheetDialogManagerProps): import("react/jsx-runtime").JSX.Element; export {};