import { ReactNode } from 'react'; export interface ServerAddressVariable { description?: string; enum?: string[]; default?: string; examples?: string[]; } interface ServerAddressBannerProps { /** The server's host/url. The banner still renders without one, matching the previous per-spec behavior. */ address?: string; variables?: Record; /** Extra rows rendered inside the banner below the address box (e.g. AsyncAPI's tag list). */ children?: ReactNode; } export default function ServerAddressBanner({ address, variables, children }: ServerAddressBannerProps): import("react").JSX.Element; export {};