import { fixture as f } from './fixture'; export default f; export * from './interfaces'; export declare function fixture(dir: any): { directory(name: any, cb: (d: { name: string; path: string; }) => any): void; eachFile(cb: (d: { name: string; path: string; filename: string; }) => any): void; eachDirectory(cb: (d: { name: string; path: string; }) => any): void; };