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