import React, { HTMLProps, PropsWithChildren } from 'react'; import { MestCss } from "../themes"; export type DrawerContentProps = HTMLProps & PropsWithChildren<{ contentCss?: MestCss; unmountOnExit?: boolean; }>; export declare const DrawerContent: React.ForwardRefExoticComponent & React.RefAttributes>;