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