import type { TFunction } from '@redocly/theme'; import type { ReactElement } from 'react'; import type { GraphQLInfo } from '../../types/index.js'; type OverviewProps = { info: GraphQLInfo; translate: TFunction; }; export declare function Overview({ info, translate }: OverviewProps): ReactElement; export {};