import React from 'react'; export interface EyeProps { animationTime?: number; open?: boolean; openedClipPath?: string; closedClipPath?: string; irisColor?: string; eyeBallColor?: string; pupilColor?: string; pupilSize?: number; follow?: boolean; pupilCoords?: { cx: number; cy: number; }; width?: number; } /** * @Component * Component for an eye which follows the mouse. */ declare function Eye({ animationTime, open, openedClipPath, closedClipPath, irisColor, eyeBallColor, pupilColor, pupilSize, follow, pupilCoords, width, }: EyeProps): React.JSX.Element; export { Eye };