export declare class File { path: string; /** * Cached file contents */ protected _contents?: string; /** * Constructor */ constructor(path: string); /** * Get file contents, and cache it */ get contents(): string; /** * Get file name */ get name(): string; /** * Get file extension */ get extension(): string; /** * Get file size */ get size(): number; /** * Get file mime type */ get mimeType(): any; /** * Get file hash */ get hash(): string; } //# sourceMappingURL=file.d.ts.map