import { DrawerCloseProps, DrawerContentProps, DrawerHeaderProps, DrawerProps, DrawerTitleProps, DrawerTriggerProps } from './types'; import * as React from "react"; /** * A drawer component that slides up from the bottom of the screen * @param props DrawerProps */ declare const Drawer: { ({ dismissible, height, modal, repositionInputs, ...props }: DrawerProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DrawerTrigger: React.ForwardRefExoticComponent>; declare const DrawerClose: React.ForwardRefExoticComponent>; /** * The content container of the drawer */ declare const DrawerContent: React.ForwardRefExoticComponent>; /** * The header section of the drawer */ declare const DrawerHeader: { ({ icon, children, ...props }: DrawerHeaderProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** * The title component of the drawer */ declare const DrawerTitle: React.ForwardRefExoticComponent>; export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerTitle };