import type { Snippet } from "svelte"; import type { HTMLInputAttributes } from "svelte/elements"; type CheckboxProps = Omit & { label: string; helperText?: string; /** Secondary muted description line under the label (e.g. a filter hint). */ description?: string; /** Trailing slot pushed to the row end (e.g. a count Badge). */ trailing?: Snippet; invalid?: boolean; class?: string; }; declare const Checkbox: import("svelte").Component; type Checkbox = ReturnType; export default Checkbox; //# sourceMappingURL=Checkbox.svelte.d.ts.map