import type { InferComputed, LogicActions } from "intentx-runtime"; export type LogicApi = { state: import("svelte/store").Writable; computed: import("svelte/store").Readable>; actions: A; emit: A extends { [k: string]: (...args: any) => any; } ? LogicActions : never; runtime: any; }; //# sourceMappingURL=types.d.ts.map