import { iconColorVariants } from '..'; interface ThreeDotsMenuIconProps { className?: string; size?: number; /** Same variants supported by other icons */ variant?: keyof typeof iconColorVariants; /** Tailwind className to force a color */ color?: string; } export declare const ThreeDotsMenuIcon: ({ className, size, variant, color, }: ThreeDotsMenuIconProps) => import("react/jsx-runtime").JSX.Element; export {};