import { BottomSheet as BottomSheetWebElement, BottomSheetHTMLAttributes } from "../web/bottom-sheet"; import { BottomSheetEvents } from "../web/index.client"; import { CustomElementProps } from "./custom-element-props"; type BottomSheetProps = CustomElementProps; declare module "react/jsx-runtime" { namespace JSX { interface IntrinsicElements { "bottom-sheet": BottomSheetProps; } } } export default function BottomSheet({ children, ...props }: BottomSheetProps): import("react/jsx-runtime").JSX.Element; export {};