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<PollIntervals>;
    HideService: CheckerT<HideService>;
    DebugFeatures: CheckerT<DebugFeatures>;
    Config: CheckerT<Config>;
};
export default checkers;
//# sourceMappingURL=config-types.d.ts.map