import type { FieldSchema } from './types.js'; interface Props { /** Unique key/id for the field */ fieldKey: string; /** Field schema definition */ schema: FieldSchema; /** Current field value */ value: unknown; /** Whether the field is required */ required?: boolean; /** Animation delay index for staggered animations */ animationIndex?: number; /** Callback when the field value changes */ onChange: (value: unknown) => void; } declare const FormFieldLight: import("svelte").Component; type FormFieldLight = ReturnType; export default FormFieldLight;