import type { Snippet } from 'svelte'; import type { HTMLFieldsetAttributes } from 'svelte/elements'; export interface Props extends Omit { /** Legend text that labels the fieldset. */ legend: string; /** Optional description text displayed below the legend. */ description?: string; /** Optional error message displayed in alert color. */ error?: string; /** CSS class to apply to the fieldset. */ class?: string; /** Form controls and content inside the fieldset. */ children: Snippet; } declare const Fieldset: import("svelte").Component; type Fieldset = ReturnType; export default Fieldset; //# sourceMappingURL=Fieldset.svelte.d.ts.map