export interface Repos { [repo: string]: { encryptedGithubToken: string; cloudbuild: any & { timeout?: string; }; }; } export interface Config { kms: { location: string; keyring: string; key: string; }; encryptedWebhookSecret: string; repos: Repos; } declare const config: Config; export default config;