export declare type Json = string | number | boolean | null | {
    [property: string]: Json;
} | Json[];
export declare function getFixturePatterns(fixturesDir: string, fixtureFileSuffix: string): string[];
export declare function getDecoratorPatterns(): string[];
export declare function getIgnorePatterns(): string[];
