import React from "react"; type DrawerContentProps = { children?: React.ReactNode; className?: string; }; declare function DrawerContent({ children, className }: DrawerContentProps): JSX.Element; export default DrawerContent;