import { File } from './file'; export declare class ParseableFile extends File { get parsedContent(): Promise; stringify(content?: T): string; parse(content: string): T; finalize(content: T, rawContent: string): string; write(content?: T): Promise; create(content?: T): Promise; upsert(content?: T): Promise; update(content: T): Promise; }