import type { Snippet } from 'svelte'; import type { ControlInteractionOptions } from './control-interaction.js'; export interface Props { label: string; id?: string; error?: string; hint?: string; required?: boolean; /** Agent/tutorial interaction metadata inherited by the wrapped control. */ interaction?: ControlInteractionOptions | false; children: Snippet; } declare const FormGroup: import("svelte").Component; type FormGroup = ReturnType; export default FormGroup; //# sourceMappingURL=FormGroup.svelte.d.ts.map