/// export declare type Value = string | number | boolean; export interface Option { value: Value; text: string; indicator?: string | number; } export interface Props { value?: Value; options?: Value[] | Option[]; onChange?: (...args: any[]) => any; className?: string; } declare const Tabs: ({ value, options, onChange, className }: Props) => JSX.Element; export default Tabs;