declare type DateTimeProps = { align?: "left" | "center" | "right"; aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; datetime: Date; id?: string; size?: "sm" | "md"; showDayOfWeek: boolean; showIcon?: boolean; timeZone?: string; }; declare const DateTime: (props: DateTimeProps) => JSX.Element; export default DateTime;