import { CollectionInterface, ProfileInterface, TokensInterface, BankCardInfoInterface } from '../interfaces'; export declare const isSelling: (collection: CollectionInterface | undefined) => boolean; export declare const getActivityAction: (token: TokensInterface | undefined, profile: ProfileInterface | undefined, bankCardInfo: BankCardInfoInterface | undefined) => { text: string; status: number; }; export declare const getOrderStatusText: (status: number) => string; export declare const getOrderStatusColor: (status: number) => string; export declare const getOrderStatusDesc: (status: number | undefined) => "订单已完成" | "订单已超时" | "订单已取消" | "订单待支付";