export interface RedshiftCredentialsProvider { getCredentials(): Promise<{ user: string; password: string; }>; getDbName(): string; } export declare class RedshiftPlainCredentialsProvider implements RedshiftCredentialsProvider { private readonly user; private readonly password; private readonly dbName; constructor(user: string, password: string, dbName: string); getDbName(): string; getCredentials(): Promise<{ user: string; password: string; }>; } //# sourceMappingURL=RedshiftCredentialsProvider.d.ts.map