import * as t from '../types';
export { Subject } from 'rxjs';
export { IMemoryCache } from '@platform/cache/lib/types';
export { INodeFs } from '@platform/fs.types';
export * from '@platform/types';
export * from '@platform/cell.types';
export * from '@platform/fsdb.types';
export * from '../types';
export declare type SchemaFileType = 'FILE';
export declare type SchemaCoordType = 'CELL' | 'COL' | 'ROW';
export declare type SchemaType<T extends t.IUri> = t.IUriParts<T> & {
    path: string;
};
export declare type DbPathString = string;
export declare type UriString = string;
export declare type IPackage = {
    name: string;
    version: string;
    dependencies?: {
        [key: string]: string;
    };
};
