import { TabPanelProps } from "@material-ui/lab";
import React from "react";
interface MyTabPanelProps {
    children?: React.ReactNode;
    index: any;
    value: any;
    other?: TabPanelProps;
}
declare function TabPanel(props: MyTabPanelProps): JSX.Element;
export default TabPanel;
