/** * Checkbox component - Binary choice input. * * @example * ```svelte * * ``` * * @example With indeterminate state * ```svelte * * ``` */ interface Props { /** * Whether the checkbox is checked */ checked?: boolean; /** * Whether the checkbox is in indeterminate state (dash instead of check) */ indeterminate?: boolean; /** * Whether the checkbox is disabled */ disabled?: boolean; /** * Optional class name */ class?: string; /** * All other input attributes */ [key: string]: any; } declare const Checkbox: import("svelte").Component; type Checkbox = ReturnType; export default Checkbox; //# sourceMappingURL=Checkbox.svelte.d.ts.map