import { ActionInterface, StateInterface } from "../faces"; export declare const Mint: (state: StateInterface, action: ActionInterface) => { 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[]; };