import type { HtmlIngredientProps } from '../types.js';
export interface CheckboxControlProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const CheckboxControl: import("svelte").Component<CheckboxControlProps, {}, "ref">;
type CheckboxControl = ReturnType<typeof CheckboxControl>;
export default CheckboxControl;
