export declare const isFunction: (functionToCheck: any) => any; export declare const convertTo24Hour: (time12h: string) => string; export declare const convertTo12Hour: (time24: string) => string; export declare const isValid12HourTime: (timeString: string) => boolean; export declare const UNIT_MULTIPLIERS: Record; export declare function normalizeStorageValue(value: string): { normalizedValue: number; unit: string; value: number; }; export declare function formatMemoryValue(valueInBytes: number): string;