import type { Snippet } from 'svelte'; interface Props { /** Field identifier for label association */ id: string; /** Display label text */ label: string; /** Whether the field is required */ required?: boolean; /** Description/help text for the field */ description?: string; /** Animation delay in milliseconds */ animationDelay?: number; /** Slot content for the field input */ children: Snippet; } declare const FormFieldWrapper: import("svelte").Component; type FormFieldWrapper = ReturnType; export default FormFieldWrapper;