import type { DatasetRepresentingState, ManualRepresentingState, MemoryRepresentingState, RepresentingConfig, RepresentingState } from './RepresentingTypes'; declare const memory: () => MemoryRepresentingState; declare const manual: () => ManualRepresentingState; declare const dataset: () => DatasetRepresentingState; declare const init: (spec: RepresentingConfig) => RepresentingState; export { memory, dataset, manual, init }; //# sourceMappingURL=RepresentState.d.ts.map