import { BillTab, BillsSubTabType, RemiSubTabType, RemiTabType, SpendManagementEntityType } from '@zeniai/client-epic-state'; export type ZeniAccountInfoTab = "wireDetails" | "achDetails"; export type TabId = BillTab | BillsSubTabType | RemiSubTabType | RemiTabType | ZeniAccountInfoTab; /** * Map spend management entity to a readable label. */ export declare const entityToTitle: (entity: SpendManagementEntityType) => string; /** * Map a tab id to a readable label. If an entity is provided, prefer its locale map. */ export declare const tabIdToTitle: (tabId: TabId | string, entity?: SpendManagementEntityType) => string; /** * Map a tab id to a human-readable display label. */ export declare const tabIdToLabel: (tabId: TabId | string, entity?: SpendManagementEntityType) => string;