import { default as Color } from 'color'; import { BillPaymentRefundStatusCodeType, BillPaymentStatus, BillPaymentStatusCodeType, BillStage, BillStatus, BillStatusCodeType } from '@zeniai/client-epic-state'; import { ZeniThemeColor } from '../../../designSystem/zeniThemeColors'; export declare const getProgressBarColor: (code?: BillStatusCodeType | BillPaymentStatusCodeType | BillPaymentRefundStatusCodeType) => Color | undefined; export declare const getTag: (tag: BillStage | BillStatus | BillPaymentStatus | undefined, theme?: ZeniThemeColor) => { value: string; color: string; bgColor: string; borderColor: string; } | undefined;