import * as React from "react"; export interface SegmentedControlButtonProps { /** * Unique identifier used for the input button */ id?: string; /** * Whether the button has been selected */ isActive?: boolean; /** * The name passed to the input. Shared by all inputs in the segmented control */ name?: string; /** * Callback for when a user makes a selection. Use the `onSelect` prop on the `SegmentedControl` instead, unless there is some extenuating circumstance. */ onChange?: (e: React.SyntheticEvent) => void; /** * The value of the input */ value: string; /** * Content that appears in a Tooltip when a users hovers the button */ tooltipContent?: React.ReactNode; children?: React.ReactNode; } declare const _default: (props: SegmentedControlButtonProps) => JSX.Element; export default _default;