import * as React from 'react'; type ThreeDotsIconProps = { color?: string; }; declare function ThreeDotsIcon({ color }: ThreeDotsIconProps): React.JSX.Element; export default ThreeDotsIcon;