/**
* Converts a generalized date string to a local date string.
* @param {string} dateStr - Generalized date string
* @returns {string} Local date string
*/
export declare const convertGeneralizedDateToLocal: (dateStr: string) => string;
