import { ReactNode } from 'react'; export declare type TabProps = Readonly<{ className?: string; headingClassName?: string; icon?: string; heading: string; text?: string; to?: string; children?: ReactNode; }>; export default function Tab({}: TabProps): JSX.Element;