import * as React from 'react'; import { MenuProps, MenuListProps, ThemeTypings, SystemProps } from '@chakra-ui/react'; export interface OverflowMenuProps extends MenuProps { /** * The button (aria) label. */ label?: string; /** * The MenuButton variant. */ variant?: 'Button' extends keyof ThemeTypings['components'] ? ThemeTypings['components']['Button']['variants'] : string; /** * The MenuButton size */ size?: 'Button' extends keyof ThemeTypings['components'] ? ThemeTypings['components']['Button']['sizes'] : SystemProps['boxSize']; /** * Props passed to the MenuList. */ menuListProps?: MenuListProps; /** * Render a custom icon. */ icon?: React.ReactNode; children: React.ReactNode; } export declare const OverflowMenu: React.FC; //# sourceMappingURL=overflow-menu.d.ts.map