export declare const ASSET_STATUS_MISSING_INFO = 1; export declare const ASSET_STATUS_INFO_COMPLETE = 2; export declare const ASSET_STATUS_CONTRACT_READY = 5; export declare const ASSET_STATUS_CONTRACTED = 6; export declare const ASSET_STATUS_DELETED = 8; export declare const ASSET_STATUS_LOT_PULLED = 9; export declare const ASSET_STATUS_SYNCED_UNSIGNED = 21; export declare const ASSET_STATUS_SYNCED_SIGNED = 22; export declare const ASSET_STATUS_SELLING = 31; export declare const ASSET_STATUS_NOT_SOLD = 38; export declare const ASSET_STATUS_SOLD = 50; export declare const ASSET_STATUS_BUYER_ABANDONED = 75; export declare const ASSET_STATUS_COLLAPSED_TO_SELLER = 89; export declare const ASSET_STATUS_COLLAPSED_TO_INVENTORY = 93; export declare const ASSET_STATUS_CLOSED = 99; export declare const ASSET_STATUS_MISSING_INFO_DESC = "Missing Info"; export declare const ASSET_STATUS_INFO_COMPLETE_DESC = "Info Complete"; export declare const ASSET_STATUS_CONTRACT_READY_DESC = "Contract Ready"; export declare const ASSET_STATUS_DELETED_DESC = "Deleted"; export declare const ASSET_STATUS_SYNCED_UNSIGNED_DESC = "Unsigned"; export declare const ASSET_STATUS_SYNCED_SIGNED_DESC = "Signed"; export declare const ASSET_STATUS_SELLING_DESC = "Selling"; export declare const ASSET_STATUS_SOLD_DESC = "Sold"; export declare const ASSET_STATUS_COLLAPSED_TO_INVENTORY_DESC = "Collapsed to Inventory"; export declare const ASSET_STATUS_COLLAPSED_TO_SELLER_DESC = "Collapsed to Seller"; export declare const ASSET_STATUS_LOT_PULLED_DESC = "Lot Pulled"; export declare const ASSET_STATUS_CONTRACTED_DESC = "Contracted"; export declare const ASSET_STATUS_NOT_SOLD_DESC = "Not Sold"; export declare const ASSET_STATUS_CLOSED_DESC = "Closed"; export declare const ASSET_STATUS_BUYER_ABANDONED_DESC = "Abandoned"; export declare const assetStatusType: { name: string; id: number; }[]; export declare class AssetStatus { static isBelongingToPreSaleTab(statusId: number): boolean; static isPostSaleStatus(statusId: number): boolean; }