import { ModuleConfig } from '../config'; export type ThrottlerType = 'default' | 'strict'; type ThrottlerStartupConfigurations = { [key in ThrottlerType]: { ttl: number; limit: number; }; }; declare module '../config' { interface AppConfig { throttler: ModuleConfig; } } export {}; //# sourceMappingURL=config.d.ts.map