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