import type { Snippet } from 'svelte'; interface FormGroupProps { /** Accessible group title (``) */ legend?: string; description?: string; /** Soft bordered panel around the group */ variant?: 'plain' | 'card' | 'inset'; gap?: 'sm' | 'md' | 'lg'; columns?: 1 | 2; disabled?: boolean; class?: string; children?: Snippet; } declare const FormGroup: import("svelte").Component; type FormGroup = ReturnType; export default FormGroup;