export declare const PostType: { readonly POST: "POST"; readonly EVENT: "EVENT"; readonly POLL: "POLL"; readonly PRODUCT: "PRODUCT"; readonly OFFER: "OFFER"; }; export type PostType = (typeof PostType)[keyof typeof PostType]; export declare const CommentType: { readonly POST: "POST"; readonly EVENT: "EVENT"; readonly POLL: "POLL"; readonly PRODUCT: "PRODUCT"; readonly OFFER: "OFFER"; }; export type CommentType = (typeof CommentType)[keyof typeof CommentType]; export declare const Role: { readonly MODERATOR: "MODERATOR"; readonly ARBITRATOR: "ARBITRATOR"; readonly USER: "USER"; }; export type Role = (typeof Role)[keyof typeof Role]; export declare const BurnType: { readonly UPVOTE: "UPVOTE"; readonly DOWNVOTE: "DOWNVOTE"; }; export type BurnType = (typeof BurnType)[keyof typeof BurnType]; export declare const AccountDanaHistoryType: { readonly GIVEN: "GIVEN"; readonly RECEIVED: "RECEIVED"; }; export type AccountDanaHistoryType = (typeof AccountDanaHistoryType)[keyof typeof AccountDanaHistoryType]; export declare const NotificationLevel: { readonly DEBUG: "DEBUG"; readonly INFO: "INFO"; readonly WARNING: "WARNING"; readonly ERROR: "ERROR"; }; export type NotificationLevel = (typeof NotificationLevel)[keyof typeof NotificationLevel]; export declare const UserTwoFactorType: { readonly email: "email"; readonly sms: "sms"; readonly authenticator: "authenticator"; }; export type UserTwoFactorType = (typeof UserTwoFactorType)[keyof typeof UserTwoFactorType]; export declare const ImageUploadableType: { readonly ACCOUNT_AVATAR: "ACCOUNT_AVATAR"; readonly ACCOUNT_COVER: "ACCOUNT_COVER"; readonly PAGE_AVATAR: "PAGE_AVATAR"; readonly PAGE_COVER: "PAGE_COVER"; readonly POST: "POST"; readonly COMMENT: "COMMENT"; readonly LIXI: "LIXI"; readonly TEMPLE_AVATAR: "TEMPLE_AVATAR"; readonly TEMPLE_COVER: "TEMPLE_COVER"; readonly MESSAGE: "MESSAGE"; readonly EVENT: "EVENT"; readonly POLL: "POLL"; readonly PRODUCT: "PRODUCT"; }; export type ImageUploadableType = (typeof ImageUploadableType)[keyof typeof ImageUploadableType]; export declare const MessageType: { readonly TEXT: "TEXT"; readonly IMAGE: "IMAGE"; readonly FILE: "FILE"; }; export type MessageType = (typeof MessageType)[keyof typeof MessageType]; export declare const PageMessageSessionStatus: { readonly PENDING: "PENDING"; readonly OPEN: "OPEN"; readonly CLOSE: "CLOSE"; }; export type PageMessageSessionStatus = (typeof PageMessageSessionStatus)[keyof typeof PageMessageSessionStatus]; export declare const BookmarkType: { readonly POST: "POST"; readonly POLL: "POLL"; readonly EVENT: "EVENT"; readonly PRODUCT: "PRODUCT"; readonly COMMENT: "COMMENT"; }; export type BookmarkType = (typeof BookmarkType)[keyof typeof BookmarkType]; export declare const EventType: { readonly VIRTUAL: "VIRTUAL"; readonly PHYSICAL: "PHYSICAL"; }; export type EventType = (typeof EventType)[keyof typeof EventType]; export declare const OfferType: { readonly BUY: "BUY"; readonly SELL: "SELL"; }; export type OfferType = (typeof OfferType)[keyof typeof OfferType]; export declare const OfferStatus: { readonly ACTIVE: "ACTIVE"; readonly ARCHIVE: "ARCHIVE"; }; export type OfferStatus = (typeof OfferStatus)[keyof typeof OfferStatus]; export declare const DisputeStatus: { readonly ACTIVE: "ACTIVE"; readonly RESOLVED: "RESOLVED"; }; export type DisputeStatus = (typeof DisputeStatus)[keyof typeof DisputeStatus]; export declare const EscrowOrderStatus: { readonly PENDING: "PENDING"; readonly ACTIVE: "ACTIVE"; readonly ESCROW: "ESCROW"; readonly COMPLETE: "COMPLETE"; readonly CANCEL: "CANCEL"; }; export type EscrowOrderStatus = (typeof EscrowOrderStatus)[keyof typeof EscrowOrderStatus]; export declare const AddressType: { readonly P2PKH: "P2PKH"; readonly P2SH: "P2SH"; }; export type AddressType = (typeof AddressType)[keyof typeof AddressType]; export declare const Coin: { readonly XPI: "XPI"; readonly XEC: "XEC"; readonly XRG: "XRG"; }; export type Coin = (typeof Coin)[keyof typeof Coin]; export declare const AccountType: { readonly NORMAL: "NORMAL"; readonly NONCUSTODIAL: "NONCUSTODIAL"; }; export type AccountType = (typeof AccountType)[keyof typeof AccountType];