declare const getFormattedDate: (date: Date) => {
    year: number;
    month: string;
    day: string;
    hour: string;
    minutes: string;
    seconds: string;
};
export { getFormattedDate };
