import { Positions } from '../../styles'; import * as React from 'react'; interface Props { anchorId: string; id: string; style?: React.CSSProperties; children?: React.ReactNode; show: boolean; toggleMenu: (value?: boolean) => void; parentRef?: any; useParentWidth?: boolean; position: Positions; items?: [ { id: string; name: string; value: React.ReactNode; } ]; } declare const Menu: { (props: Props): JSX.Element; defaultProps: { position: string; }; }; export default Menu;