import type { CheckboxProps } from '../types/checkbox';
import '../types/label';
declare module '@sjsf/form' {
    interface UiOptions {
        shadcnCheckbox?: CheckboxProps;
    }
}
declare const Checkbox: import("svelte").Component<import("@sjsf/form/fields/widgets").WidgetCommonProps<boolean>, {}, "value">;
type Checkbox = ReturnType<typeof Checkbox>;
export default Checkbox;
