export declare type Cluster = { fullName: string; passToken?: string; passCredentials?: { ca_cert: string; token: string; }; api_url?: string; connect: () => Promise; }; declare const clusters: { [clustername: string]: Cluster; }; export default clusters;