import { ActionInterface, StateInterface } from "../faces"; export declare const Transfer: (state: StateInterface, action: ActionInterface) => { balances: { [address: string]: number; }; name: string; ticker: string; description: string; owner: string; invites: { [address: string]: number; }; };