import { EventEmitter } from '@angular/core'; import { type ControlValueAccessor } from '@angular/forms'; import '@arclux/arc-ui/segmented-control'; import type { ArcSegmentedControl } from '@arclux/arc-ui/segmented-control'; import * as i0 from "@angular/core"; export declare class SegmentedControl implements ControlValueAccessor { private readonly _el; /** The element, for the methods it is driven by: checkValidity() and reportValidity(). */ get element(): ArcSegmentedControl; set required(value: boolean); get required(): boolean; set readonly(value: boolean); get readonly(): boolean; set value(value: string); get value(): string; set name(value: string); get name(): string; set disabled(value: boolean); get disabled(): boolean; valueChange: EventEmitter; _onArcChange(event: CustomEvent): void; private _onChangeFn; private _onTouchedFn; constructor(); writeValue(value: string | null | undefined): void; registerOnChange(fn: (value: string) => void): void; registerOnTouched(fn: () => void): void; setDisabledState(isDisabled: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }