export declare const STATUS_CRITICAL = "critical"; export declare const STATUS_WARNING = "warning"; export declare const STATUS_NONE = "none"; export declare const STATUS_HEALTH = "healthy"; export declare const STATUS_UNKNOWN = "unknown"; type StatusType = typeof STATUS_CRITICAL | typeof STATUS_WARNING | typeof STATUS_NONE | typeof STATUS_HEALTH; export declare function compareHealth(status1: StatusType, status2: StatusType): number | undefined; export declare function convertRemToPixels(rem: any): number; export type TableLocalType = 'en' | 'fr'; export type TableHeightKeyType = 'h32' | 'h40' | 'h48' | 'h64'; export type TableVariantType = 'backgroundLevel1' | 'backgroundLevel2' | 'backgroundLevel3' | 'backgroundLevel4'; export declare const tableRowHeight: { h32: string; h40: string; h48: string; h64: string; }; type TableMessagesType = 'error' | 'loading' | 'idle' | 'noResult'; export declare const translatedMessages: (type: TableMessagesType, entityName?: { en: { singular: string; plural: string; }; fr?: { singular: string; plural: string; }; }, locale?: TableLocalType) => string; export {}; //# sourceMappingURL=TableUtils.d.ts.map