import { IndexSchema } from "../table/IndexSchema"; import { Schema } from "../schema/Schema"; import { Table } from "../table/Table"; import { Item } from "../table"; export declare function prepareIsEqualFunction(schema: Schema): (a: Item, b: Item) => Boolean; export declare function prepareUpdateFunction(schema: Schema, targetIndex: IndexSchema, table: Table): (...args: any[]) => void; export declare function prepareUpdateAllFunction(schema: Schema, table: Table): (...args: any[]) => void;