import { CancelReasons, CostCategory, ShiftType, UserStatus } from '@velove/types'; /** * Get label to display for a given CancelReasons */ export declare function getCancelationReasonLabel(reason: CancelReasons): string; /** * Get label to display for a given CostCategory */ export declare function getCostCategoryLabel(costCategory?: CostCategory | string | null): string; /** * Get label to display for a given ShiftType */ export declare function getShiftTypeLabel(type: ShiftType): string; /** * Get label to display for a given UserStatus */ export declare function getUserStatusLabel(status: UserStatus): string;