import type { ReactElement, ReactNode } from 'react'; interface DrawerProps { /** * Drawer's visibility. */ visible: boolean; /** * Drawer's content. */ children?: ReactNode; /** * Enable the drawer's backdrop. */ hasBackdrop?: boolean; /** * Callback when the drawer is dismissed by interacting outside of the drawer. */ onDismiss?: () => void; /** * Testing id of the component. * */ testID?: string; } declare const _default: (({ visible, children, hasBackdrop, onDismiss, testID, }: DrawerProps) => ReactElement) & { Dragable: ({ children, initialHeightPercentage, minimumHeightPercentage, snapPoints, onExpanded, onCollapsed, testID, }: import("./DragableDrawer").DragableDrawerProps) => ReactElement; }; export default _default;