import { type HTMLAttributes } from 'react';
type EyeIconProps = HTMLAttributes & {
size?: number;
open: boolean;
};
export declare const EyeIcon: ({ className, size, open, ...props }: EyeIconProps) => import("react/jsx-runtime").JSX.Element;
export {};