import { IconButtonProps } from './IconButton'; import { ComponentProps } from 'react'; import { Icon } from '../../icons'; import { Dropdown } from '../Dropdown'; type IconButtonDotsProps = IconButtonProps & { dropdownProps?: ComponentProps; iconSize?: ComponentProps['size']; iconOrientation?: 'horizontal' | 'vertical'; }; export declare const IconButtonDots: ({ dropdownProps, iconSize, iconOrientation, ...props }: IconButtonDotsProps) => import("react/jsx-runtime").JSX.Element; export {};