import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> { } declare const Label: import("svelte").Component; type Label = ReturnType; export default Label;