import { Path } from './path'; export declare class ReadableFile extends Path { props?: ({ basename?: string | undefined; cwd?: string | undefined; path?: string | undefined; } & { defaultContent?: string | undefined; }) | undefined; constructor(props?: ({ basename?: string | undefined; cwd?: string | undefined; path?: string | undefined; } & { defaultContent?: string | undefined; }) | undefined); cacheContent?: string; get content(): Promise; }