import { PropsWithChildren } from 'react'; export interface Props { /** * A unique identifier for the toggle button. */ id: string; /** * The button that is selected. */ selectedItem: string; /** * Callback when an item has been selected */ onChange(value: string): void; } export declare function ToggleButtonGroup({ children, selectedItem, onChange, }: PropsWithChildren): JSX.Element;