import { DataSpec } from './data-spec.js'; export declare class DataSpecManager { static specRegistry: { [type: string]: DataSpec; }; static getDataSpec(type: string): DataSpec; static registerDataSpec(type: string, dataSpec: DataSpec): void; static unregisterDataSpec(type: string): void; static getDataSpecs(): DataSpec[]; }