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