#!/usr/bin/env node
export declare const cli: {
    values: {
        cwd: string;
        schema?: string;
        config?: string;
        logLevel: string;
        check?: boolean;
        help?: boolean;
    };
    positionals: [];
};
export declare const run: ({ values, }?: typeof cli) => Promise<{
    stdout: string;
    stderr: string | Error;
    exitCode: number;
    doNotExit?: boolean;
}>;
//# sourceMappingURL=cli.d.ts.map