/// export type OptionsSwitcherOption = { key: string; label?: string; }; export type OptionsSwitcherClassNames = { activeButtonClassName?: string; buttonClassName?: string; rootClassName?: string; }; export type OptionsSwitcherProps = { onChange?: (key: T) => void; options?: OptionsSwitcherOption[]; value?: T; }; export type Props = OptionsSwitcherClassNames & OptionsSwitcherProps; export declare const OptionsSwitcher: ({ onChange, value, options, rootClassName, activeButtonClassName, buttonClassName, }: Props) => JSX.Element;