import React from 'react'; export interface ITabsProps { onChange?: (key: string) => void; defaultActiveKey?: string; style?: object; value?: string; } export declare const Select: React.FC;