import { Drawer as DrawerPrimitive } from '@base-ui/react/drawer'; import { type VariantProps } from 'class-variance-authority'; import { ReactNode } from 'react'; declare const drawerPopup: (props?: ({ side?: "top" | "bottom" | "left" | "right" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface DrawerContentProps extends Omit, VariantProps { showCloseButton?: boolean; overlayProps?: DrawerPrimitive.Backdrop.Props; children?: ReactNode; } export declare function DrawerContent({ className, children, side, showCloseButton, overlayProps, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledBy, closeLabel, ...props }: DrawerContentProps & { closeLabel?: string; }): import("react/jsx-runtime").JSX.Element; export declare namespace DrawerContent { var displayName: string; } export {}; //# sourceMappingURL=drawer-content.d.ts.map