import { IndexEntry } from '@struktoai/mirage-core/cache/index/config'; export declare const DiskResourceType: Readonly<{ readonly FILE: "file"; readonly FOLDER: "folder"; }>; export type DiskResourceType = (typeof DiskResourceType)[keyof typeof DiskResourceType]; export declare class DiskIndexEntry extends IndexEntry { static file(path: string, size?: number, modified?: string): DiskIndexEntry; static folder(path: string, modified?: string): DiskIndexEntry; } //# sourceMappingURL=entry.d.ts.map