import { ComponentChildren } from 'preact'; import { EventHandler } from '../../types/event-handler.js'; import { FocusableComponentProps } from '../../types/focusable-component-props.js'; export interface SegmentedControlProps extends FocusableComponentProps { disabled?: boolean; onChange?: EventHandler.onChange; onValueChange?: EventHandler.onValueChange; options: Array; value: string; } export type SegmentedControlOption = { disabled?: boolean; children?: ComponentChildren; value: string; }; export declare const SegmentedControl: import("preact").FunctionalComponent, "ref"> & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=segmented-control.d.ts.map