import type { ButtonProps } from 'react-node-insim'; export type ToggleButtonGroupOption = { label: string; value: string | number; isDisabled?: boolean; }; type Props = Omit & { options: TOption[]; selectedOption: TOption; onChange: (option: TOption) => void; isDisabled?: boolean; }; export declare function ToggleButtonGroup({ options, selectedOption, onChange, top, left, width, variant, isDisabled, ...props }: Props): import("react").JSX.Element; export {};