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