UNPKG

410 BTypeScriptView Raw
1import { FormatDateOptions } from '@formatjs/intl';
2import * as React from 'react';
3interface Props extends FormatDateOptions {
4 from: Parameters<Intl.DateTimeFormat['formatRange']>[0];
5 to: Parameters<Intl.DateTimeFormat['formatRange']>[1];
6 children?(value: React.ReactNode): React.ReactElement | null;
7}
8declare const FormattedDateTimeRange: React.FC<Props>;
9export default FormattedDateTimeRange;