import { AttrsStore, Store } from './store.ts'; import { IContainEntitiesAndLinks } from './schemaTypes.ts'; export type AttrMapping = { attrIdMap: Record; refSwapAttrIds: Set; }; type TXStep = any[]; export declare function rewriteStep(attrMapping: AttrMapping, txStep: TXStep): TXStep; type Ctx = { stores?: (Store | undefined)[]; attrsStore: AttrsStore; schema?: Schema; useDateObjects?: boolean | null; }; type Schema = IContainEntitiesAndLinks; export declare function transform(ctx: Ctx, inputChunks: any): TXStep[]; export {}; //# sourceMappingURL=instaml.d.ts.map