import { ActionInterface, StateInterface } from "./faces"; export declare function handle(state: StateInterface, action: ActionInterface): Promise<{ state: { people: { username: string; name: string; addresses: string[]; image?: string; bio?: string; links?: { [identifier: string]: string; }; }[]; tokens: { id: string; type: import("./faces").Token; lister: string; }[]; }; }>;