import * as React from 'react';
export interface TabsProps {
  items: string[];
  /** Currently-selected item */
  value?: string;
  onChange?: (item: string) => void;
  style?: React.CSSProperties;
}
export declare function Tabs(props: TabsProps): JSX.Element;
