export declare function centToDollar(cent: number): number; export declare function formatCentToDollarText(cent: number, showZeroDecimals?: boolean): string; export declare function htmlStringToElement(htmlString: string): HTMLElement; export declare function formatISODateToMMDDYYYY(isoDateString: string | null | undefined): string; export declare function capitalizeFirstLetter(text: string): string; export declare function splitCategoryPath(catPath?: string): { category: string; category2: string; category3: string; };