import { ActionInterface, StateInterface } from "./faces"; export declare function handle(state: StateInterface, action: ActionInterface): Promise<{ state: { name: string; description: string; owner: string; collaborators: string[]; items: string[]; invocations: string[]; foreignCalls: import("./faces").ForeignCallInterface[]; }; }>;