import React from 'react'; export interface MyTabPaneProps { value: string; visible: boolean; style: React.CSSProperties; [key: string]: any; } declare const MyTabPane: React.ForwardRefExoticComponent & React.RefAttributes>; export default MyTabPane;