import { RAMAccessor } from '../../accessor/ram.ts'; import type { RegisteredCommand } from '../../commands/config.ts'; import type { RegisteredOp } from '../../ops/registry.ts'; import { type FileStat, type PathSpec } from '../../types.ts'; import { RAMResource } from '../ram/ram.ts'; import type { RAMStore } from '../ram/store.ts'; export declare class DevResource extends RAMResource { readonly store: RAMStore; readonly accessor: RAMAccessor; constructor(); ops(): readonly RegisteredOp[]; commands(): readonly RegisteredCommand[]; streamPath(path: PathSpec): AsyncIterable; readFile(path: PathSpec): Promise; stat(path: PathSpec): Promise; } //# sourceMappingURL=dev.d.ts.map