import React from "react"; /** * TODO: Rewrite segmented control to stop using the options={[],[]} api and start using a nested components API, to keep it in line with all the other components and how they work. */ declare const SegmentedControl: React.ForwardRefExoticComponent<{ className?: string | undefined; options: import("./SegmentedControl.types").SegmentedControlOption[]; value?: string | undefined; defaultValue?: string | undefined; onChange?: ((value: string, isUpdatedViaKeyboard?: boolean | undefined) => void) | undefined; isFullWidth?: boolean | undefined; } & Omit, "onChange"> & React.RefAttributes>; export { SegmentedControl };