import { Drawer as DrawerPrimitive } from '@base-ui/react/drawer'; type Side = 'top' | 'right' | 'bottom' | 'left'; export interface DrawerRootProps extends DrawerPrimitive.Root.Props { /** The direction from which the drawer appears and can be swiped to dismiss. */ side?: Side; } export declare function DrawerRoot({ side, swipeDirection, ...props }: DrawerRootProps): import("react/jsx-runtime").JSX.Element; export declare namespace DrawerRoot { var displayName: string; } export {}; //# sourceMappingURL=drawer-root.d.ts.map