import { SectionLayout } from '../../components/Section'; import { Server as ServerInterface } from '../../types/asyncapi/Server'; interface ServersProps { servers: Record; selectedServer?: string | null; onSelectServer?: (serverName: string) => void; /** Which collapsed section of the selected server search navigated to. */ focusSection?: string | null; layout?: SectionLayout; } export default function Servers({ servers, selectedServer, onSelectServer, focusSection, layout }: ServersProps): import("react").JSX.Element; export {};