import type { HtmlIngredientProps } from '../types.js';
export interface ComboboxLabelProps extends HtmlIngredientProps<'label', HTMLLabelElement> {
}
declare const ComboboxLabel: import("svelte").Component<ComboboxLabelProps, {}, "ref">;
type ComboboxLabel = ReturnType<typeof ComboboxLabel>;
export default ComboboxLabel;
