import { type FC } from 'react';
export interface ExternalSiteBaseProps {
    name: string;
    template?: 'apisOverview';
}
export interface ExternalSiteNoteProps {
    name: string;
    displayName: string;
}
export type Notes = Partial<Record<string, FC<ExternalSiteNoteProps>>>;
export declare const ExternalSiteBase: ({ name, template }: ExternalSiteBaseProps) => import("react/jsx-runtime").JSX.Element;
