import React from 'react'; interface IDrawerFooterProps extends React.HTMLProps { className?: string; children: React.ReactNode; } export default function DrawerFooter({ className, children, ...props }: IDrawerFooterProps): React.JSX.Element; export {};