/** * 获取支付状态映射 */ export declare const getPaymentStatusMap: () => Record; export declare const PAYMENT_STATUS_COLOR_MAP: Record; export declare const getPlatformMap: () => Record; /** * 获取订单状态映射 * @param locales - 多语言对象 */ export declare const getOrderStatusMap: () => Record; export declare const ORDER_STATUS_COLOR_MAP: Record; /** * 获取处理状态映射 */ export declare const getShippingStatusMap: () => Record; export declare const FULFILLMENT_STATUS_COLOR_MAP: Record; /** * 获取配送方式映射 */ export declare const getDeliveryTypeMap: () => Record; /** * 获取到店服务类型映射 * @param locales - 多语言对象 */ export declare const getShopServiceTypeMap: () => Record; export declare const DELIVERY_TYPE_COLOR_MAP: Record; export declare const SHOP_SERVICE_TYPE_COLOR_MAP: Record; export declare const getOrderHeaderLabels: () => Record; export declare const defaultPaymentStatusKeys: string[]; export declare const getFilterButtonList: () => ({ name: string; type: string; key: string; label: any; other: { allowClear: boolean; mode: string; maxTagCount: string; placeholder: any; options: { label: string; value: string; }[]; isSearchServer?: undefined; showSearch?: undefined; virtual?: undefined; minInputNumberProps?: undefined; maxInputNumberProps?: undefined; }; } | { name: string; type: string; key: string; label: any; other: { allowClear: boolean; isSearchServer: boolean; showSearch: boolean; placeholder: any; options: (params?: string) => Promise; mode?: undefined; maxTagCount?: undefined; virtual?: undefined; minInputNumberProps?: undefined; maxInputNumberProps?: undefined; }; } | { name: string; type: string; key: string; label: any; other: { allowClear: boolean; mode: string; maxTagCount: string; placeholder: any; options: () => Promise; isSearchServer?: undefined; showSearch?: undefined; virtual?: undefined; minInputNumberProps?: undefined; maxInputNumberProps?: undefined; }; } | { name: string; type: string; key: string; label: any; other: { allowClear: boolean; mode: string; maxTagCount: string; virtual: boolean; placeholder: any; options: () => Promise; isSearchServer?: undefined; showSearch?: undefined; minInputNumberProps?: undefined; maxInputNumberProps?: undefined; }; } | { name: string; type: string; key: string; label: any; other: { placeholder: any; minInputNumberProps: { min: number; }; maxInputNumberProps: { min: number; }; allowClear?: undefined; mode?: undefined; maxTagCount?: undefined; options?: undefined; isSearchServer?: undefined; showSearch?: undefined; virtual?: undefined; }; } | { name: string; type: string; key: string; label: any; other: { allowClear: boolean; mode: string; maxTagCount: string; isSearchServer: boolean; showSearch: boolean; placeholder: any; options: (params?: string) => Promise; virtual?: undefined; minInputNumberProps?: undefined; maxInputNumberProps?: undefined; }; } | { name: string; type: string; key: string; label: any; other: { placeholder: any; allowClear?: undefined; mode?: undefined; maxTagCount?: undefined; options?: undefined; isSearchServer?: undefined; showSearch?: undefined; virtual?: undefined; minInputNumberProps?: undefined; maxInputNumberProps?: undefined; }; } | { name: string; type: string; key: string; label: any; other: { allowClear: boolean; placeholder: any; options: () => Promise; mode?: undefined; maxTagCount?: undefined; isSearchServer?: undefined; showSearch?: undefined; virtual?: undefined; minInputNumberProps?: undefined; maxInputNumberProps?: undefined; }; })[]; export declare const getSortList: () => ({ type: string; isCustom: boolean; name: string; label: any; getSortItems: () => { key: string; label: any; }[]; } | { type: string; isCustom: boolean; name: string; label: any; getSortItems?: undefined; })[];