import type { TServiceParams } from "@digital-alchemy/core"; import type { ENTITY_STATE } from "../../index.mts"; import type { ANY_ENTITY } from "../../user.mts"; import type { ScannerCacheData } from "../helpers/index.mts"; type StateOptions = Partial<{ [entity in ANY_ENTITY]: Partial>; }>; export declare function MockFixtures({ lifecycle, config, internal, context, mock_assistant, }: TServiceParams): { byId: (entity: ANY_ENTITY) => ENTITY_STATE; data: ScannerCacheData; replace: (entity: ENTITY, new_state: Partial>) => ENTITY_STATE; setState: (options: StateOptions) => void; }; export {};