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