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