import { Knex } from 'knex'; import { ConfigStore, AuthConfig } from '../types.js'; export declare class KnexConfigStore implements ConfigStore { private tableName; private knex; private cacheTTL; constructor(knex: Knex, cacheTTL?: number); initialize(): Promise; private cache; getConfig(): Promise; updateConfig(update: Partial): Promise; } //# sourceMappingURL=knex-config.d.ts.map