import React from 'react'; import { A11yProps } from '../../_utils/interfaces'; import { ItemChoiceProps } from '../../itemChoice'; export declare type MenuProps = A11yProps & Readonly<{ children: React.ReactElement | Array>; className?: string; withSeparators?: boolean; }>; export declare const Menu: { ({ className, children, withSeparators, ...props }: MenuProps): JSX.Element; Divider: React.FunctionComponent<{}>; };