import { Theme } from '@mui/material/styles'; import { TreasuryTransactionStatus } from '@zeniai/client-epic-state'; import { Colors } from '../../../designSystem/zeniConstants'; export type FundColorSet = { fundNameColor: string; fundSubNameColor: string; headerBackground: string; highlightsBackground: string; thumbnailBackground: string; }; export declare const getFundColorsByIndex: (index: number, theme: Theme) => FundColorSet; export declare const getTransactionStatus: (status: TreasuryTransactionStatus | undefined) => TransactionStatusMap | undefined; export declare const TransStatusToColor: (code: string) => Colors.neutralGrey1Light | Colors.success | Colors.important; interface TransactionStatusMap { code: string; color: string; value: string; } export {};