import React from "react";
export interface EyeSVGProps extends React.SVGProps<SVGSVGElement> {
    isOpen?: boolean;
}
export declare const EyeIcon: ({ isOpen, ...props }: EyeSVGProps) => JSX.Element;
