import type { Scope } from "intentx-state-z"; import { IntentBus } from "../core/intentBus"; import type { LogicFactory } from "./types"; import type { LogicFluentBuilder } from "./createLogic"; type LogicInput = LogicFactory | LogicFluentBuilder; type LogicMap = Record; type AppResponse = { scope: Scope; bus: IntentBus; logics: { [K in keyof M]: ReturnType; }; }; export declare function createApp(config: { name?: string; logics: M; }): AppResponse; export {};