export interface KeyConfig { projectId: string; locationId: string; keyRingId: string; cryptoKeyId: string; ciphertextBucket: string; ciphertextFilename: string; } export interface GckmsConfig { [network: string]: { [keyName: string]: KeyConfig; }; } export declare function getGckmsConfig(keys?: string[], network?: any): KeyConfig[];