import { IConfigValidator } from '@wix-velo/velo-external-db-types'; export declare class PostgresConfigValidator implements IConfigValidator { requiredKeys: string[]; hostKeyOptions: string[]; config: any; constructor(config: any); readConfig(): any; validate(): { missingRequiredSecretsKeys: string[]; }; }