import { PaperProps } from '../Paper'; import { AnimationProps } from '../Animation'; import { PrismaneProps, PrismaneWithInternal } from '../../types'; import { MenuItemProps } from "./MenuItem"; import { MenuLabelProps } from "./MenuLabel"; import { MenuIconProps } from "./MenuIcon"; export { type MenuItemProps, type MenuLabelProps, type MenuIconProps }; export type MenuProps = PrismaneProps<{ open?: boolean; }, AnimationProps & PaperProps>; declare const Menu: PrismaneWithInternal; export default Menu; //# sourceMappingURL=Menu.d.ts.map