/** * Converts a date string to a short date format. * @param d - The date string to be converted. * @returns The short date format string (`YYYY-MM-DD`), or an empty string if * `d` is missing or not a valid date. */ export declare const getShortDate: (d: string) => string;