import * as react from 'react';
import { IconSize } from '../type.mjs';

declare const NavigationMoreVertical: react.ForwardRefExoticComponent<Omit<{
    size: IconSize;
    color?: string | undefined;
} & react.SVGProps<SVGSVGElement>, "ref"> & react.RefAttributes<SVGSVGElement>>;

export { NavigationMoreVertical };
