import type { Snippet } from 'svelte'; interface FormDescriptionProps { /** Plain text helper (ignored when `children` is set) */ text?: string; tone?: 'muted' | 'info' | 'success' | 'warning' | 'error'; id?: string; class?: string; children?: Snippet; } declare const FormDescription: import("svelte").Component; type FormDescription = ReturnType; export default FormDescription;