import type { AsyncApiServer } from '../types/index.js';
type ServersListPanelProps = {
    servers: {
        key?: string;
        value: AsyncApiServer;
    }[];
    showDetails?: boolean;
    hideHeader?: boolean;
};
export declare const ServersListPanel: import("react").MemoExoticComponent<({ servers, showDetails, hideHeader }: ServersListPanelProps) => import("react/jsx-runtime").JSX.Element>;
export {};
