/// import { IInnerTab } from '../../types'; interface IAnchorOperationProps { tabs: Array>; onChange: (item: IInnerTab) => void; } declare const AnchorOperation: ({ tabs, onChange, }: IAnchorOperationProps) => JSX.Element; export default AnchorOperation;