import { Fs } from './validator'; export declare class TestFs implements Fs { private readonly state; constructor(paths: string[]); compare(path1: string, path2: string): number; exists(path: string): boolean; isGlob(pattern: string): boolean; resolvePaths(pattern: string): string[]; }