import React, { HTMLAttributes } from 'react'; import { TabData } from "../types"; export type Props = { info: TabData; } & HTMLAttributes; declare const About: ({ className }: Props) => React.JSX.Element; export { About };