import { Server as ServerInterface } from '../../types/asyncapi/Server'; interface ServerProps extends ServerInterface { /** The server's own key/name, needed to build ids for its sub-sections. */ serverKey?: string; /** Which collapsed section (if any) search navigated to, e.g. `binding:kafka`. */ focusSection?: string | null; } export default function Server({ host, protocol, description, tags, variables, security, bindings, serverKey, focusSection, }: ServerProps): import("react").JSX.Element; export {};