declare const Checkbox: import("svelte").Component<{
    id?: any;
    name?: string;
    checked?: boolean;
    value?: string;
    label?: string;
    description?: string;
    error?: string;
    disabled?: boolean;
    readonly?: boolean;
    required?: boolean;
    indeterminate?: boolean;
    size?: string;
    class?: string;
    onchange: any;
    onkeydown: any;
    onfocus: any;
    onblur: any;
    onescape: any;
} & Record<string, any>, {}, "checked">;
type Checkbox = ReturnType<typeof Checkbox>;
export default Checkbox;
//# sourceMappingURL=Checkbox.svelte.d.ts.map