import type { SelectData } from "@gradio/utils"; type $$ComponentProps = { label?: string; value?: boolean; indeterminate?: boolean; interactive?: boolean; show_label?: boolean; on_change?: (value: boolean) => void; on_input?: () => void; on_select?: (data: SelectData) => void; }; declare const Checkbox: import("svelte").Component<$$ComponentProps, {}, "value">; type Checkbox = ReturnType; export default Checkbox;