export declare const TransactionStatus: { readonly idle: "idle"; readonly awaiting: "awaiting"; readonly inProgress: "in-progress"; readonly preparingIdentity: "preparing-identity"; readonly publishingIdentity: "publishing-identity"; readonly approveTransaction: "approve-transaction"; readonly reviewTransaction: "review-transaction"; readonly transactionHash: "hash"; readonly transactionPending: "transaction-pending"; readonly transactionConfirmed: "transaction-confirmed"; readonly confirm: "confirm"; readonly complete: "complete"; readonly error: "error"; readonly uploadingImage: "uploading-image"; readonly imageUploadComplete: "image-upload-complete"; }; export type TransactionStatusType = (typeof TransactionStatus)[keyof typeof TransactionStatus]; export declare const Transaction: { identity: string; claim: string; deposit: string; redeem: string; tag: string; follow: string; unfollow: string; list: string; save: string; unsave: string; }; export type TransactionType = (typeof Transaction)[keyof typeof Transaction];