import type { ControlInteractionOptions } from './control-interaction.js'; import type { SegmentedControlOption } from './types.js'; export interface Props { options: SegmentedControlOption[]; value?: string | number; label: string; name?: string; disabled?: boolean; fullWidth?: boolean; interaction?: ControlInteractionOptions | false; onvaluechange?: (value: string | number) => void; class?: string; } declare const SegmentedControl: import("svelte").Component; type SegmentedControl = ReturnType; export default SegmentedControl; //# sourceMappingURL=SegmentedControl.svelte.d.ts.map