import { FC, PropsWithChildren } from "react"; interface DrawerProps extends PropsWithChildren { /** We control the open state from the parent component, with the ability to call the change handler from here */ open: boolean; handleOpenChange: (open: boolean) => void; } /** * The Tables route element. Includes Header and Drawer Elements, tables are placed inside using * react-routers Outlet component. */ declare const Drawer: FC; export default Drawer;