export declare function getDateDateString({ year, month, day, }: {
    day: number;
    month: number;
    year: number;
}): string;
