import { Audit, RunnerConf } from "./common";
export declare function autoKayle(o?: RunnerConf & {
    log?: boolean;
    store?: string;
    cb?: ((result: Audit) => Promise<void>) | ((result: Audit) => void);
}, ignoreSet?: Set<String>, _results?: Audit[]): Promise<Audit[]>;
