import { File } from './file'; interface ISpecTest { title: string; content: string; } export declare class Spec extends File { imports: string[]; helpers: string[]; tests: ISpecTest[]; /** Runs `prettier` over the spec file */ pretty(): Promise; parse(): this; write(content?: string): Promise; refresh(): Promise; private extractAstNodes; private extractTests; static build(location: string): Promise; } export {}; //# sourceMappingURL=spec.d.ts.map