import { DataSource } from 'typeorm'; export declare enum ConfigKey { ACTIVE_FIRST_PARTY_ENDPOINT_ID = "first_party_endpoint_id" } export declare class Config { private readonly repository; constructor(dataSource: DataSource); get(key: ConfigKey): Promise; set(key: ConfigKey, value: string): Promise; }