import type { HtmlIngredientProps } from '../types.js';
export interface CheckboxLabelProps extends HtmlIngredientProps<'span', HTMLSpanElement> {
}
declare const CheckboxLabel: import("svelte").Component<CheckboxLabelProps, {}, "ref">;
type CheckboxLabel = ReturnType<typeof CheckboxLabel>;
export default CheckboxLabel;
