import type { HTMLInputAttributes } from 'svelte/elements';
import type { ControlInteractionOptions } from './control-interaction.js';
export interface Props extends Omit {
checked?: boolean;
indeterminate?: boolean;
label?: string;
class?: string;
interaction?: ControlInteractionOptions | false;
}
declare const Checkbox: import("svelte").Component;
type Checkbox = ReturnType;
export default Checkbox;
//# sourceMappingURL=Checkbox.svelte.d.ts.map