import Tuple from "../Tuple"; import TableMount from "../TableMount"; interface SetupOpts { name?: string; baseKey: Tuple; keyAttr?: string; valueAttr?: string; initialValue?: Map; } interface Result { map: Map; table: TableMount; } export default function setupInMemoryObjectTable(opts: SetupOpts): Result; export {};