type EyeButtonProps = { name?: string; id?: string; onClick?(): void; status?: "on" | "off"; }; export declare const EyeButton: (props: EyeButtonProps) => import("react/jsx-runtime").JSX.Element; export {};