import * as React from "react"; import { SegmentedControlButtonProps } from "../components/SegmentedControlButton"; export interface SegmentedControlProps { /** * The buttons that make up the segmented control */ children: Array>; /** * A unique identifier for the segmented control */ id?: string; /** * Callback for when a user makes a selection. The active segment value is the first parameter */ onSelect?: (selectedSegment: string) => void; /** * The value of the selected segment input */ selectedSegment?: string; /** * human-readable selector used for writing tests */ ["data-cy"]?: string; } declare const SegmentedControl: (props: SegmentedControlProps) => JSX.Element; export default SegmentedControl;