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