import type { HTMLAttributes } from '../../../internal/html-attributes.js';
import type { PropsWithElement } from '../../../internal/props-with-element.js';
import type { ItemProps } from '@zag-js/radio-group';
export interface SegmentedControlItemProps extends ItemProps, PropsWithElement<'label'>, HTMLAttributes<'label'> {
}
declare const Item: import("svelte").Component;
type Item = ReturnType;
export default Item;