import { ActionInterface, StateInterface } from "./faces"; export declare function handle(state: StateInterface, action: ActionInterface): Promise<{ state: { balances: { [address: string]: number; }; name: string; ticker: string; title: string; description: string; owner: string; allowMinting: boolean; contentType: string; createdAt: string; invocations: string[]; foreignCalls: import("./faces").ForeignCallInterface[]; }; result?: undefined; } | { result: { target: string; balance: number; }; state?: undefined; }>;