import * as React from 'react'; import { DateSource } from 'react-intl'; interface Props { children?: (formattedDate: string) => React.ReactNode; date: DateSource; } export declare const formatterOption: { year: string; month: string; day: string; hour: string; minute: string; }; export default function DateTimeFormatter({ children, date }: Props): JSX.Element; export {};