/** * This source code is quoted from rc-tabs. * homepage: https://github.com/react-component/tabs */ import React from 'react'; import { SaveRefProps } from './iTabs'; export default class SaveRef extends React.Component { static defaultProps: { children: () => null; }; getRef: (name: string) => any; saveRef: (name: string) => React.LegacyRef; render(): React.ReactNode; }