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