import { ReactElement } from 'react'; import { MenuFooterProps, MenuHeaderProps, MenuItemsProps } from '../../models'; interface Props { open: boolean; onClose: () => void; footer?: MenuFooterProps; items: MenuItemsProps[]; header?: MenuHeaderProps; } export declare const Menu: (props: Props) => ReactElement; export {}; //# sourceMappingURL=index.d.ts.map