#!/usr/bin/env node import { DictatableConfig } from './types'; export declare class DictatableConfigVerifier { private dictatorPath; private targetPath; constructor(dictatorPath: string, targetPath: string); verify(config: DictatableConfig): boolean; }