import { CheckerT, ICheckerSuite, ITypeSuite, TType } from 'ts-interface-checker'; import { PollIntervals, HideService, DebugFeatures, Config } from '../config-types.js'; export interface TypeMap { PollIntervals: PollIntervals; HideService: HideService; DebugFeatures: DebugFeatures; Config: Config; } export declare const typeSuite: ITypeSuite & { PollIntervals: TType; HideService: TType; DebugFeatures: TType; Config: TType; }; export declare const checkers: ICheckerSuite & { PollIntervals: CheckerT; HideService: CheckerT; DebugFeatures: CheckerT; Config: CheckerT; }; export default checkers; //# sourceMappingURL=config-types.d.ts.map