import React, { type CSSProperties } from 'react'; export interface EyeLayout { left: { opened: string; closed: string; }; right: { opened: string; closed: string; }; pupil: { cx: number; cy: number; }; } export type EyeLayoutPresets = 'unfriendly' | 'menacing' | 'neutral'; export interface EyesProps { open?: boolean; eyeLayout?: EyeLayoutPresets | EyeLayout; animationTime?: number; width?: number; irisColor?: string; eyeBallColor?: string; pupilColor?: string; style?: CSSProperties; pupilSize?: number; follow?: boolean; } declare function Eyes({ open, eyeLayout, animationTime, width, irisColor, eyeBallColor, pupilColor, style, pupilSize, follow, }: EyesProps): React.JSX.Element; export { Eyes };