/// <reference types="react" />
import { IInnerTab } from '../../types';
interface IAnchorOperationProps<Id> {
    tabs: Array<IInnerTab<Id>>;
    onChange: (item: IInnerTab<Id>) => void;
}
declare const AnchorOperation: <Id extends string | number = string>({ tabs, onChange, }: IAnchorOperationProps<Id>) => JSX.Element;
export default AnchorOperation;
