1 | import { FormatDateOptions } from '@formatjs/intl';
|
2 | import * as React from 'react';
|
3 | interface 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 | }
|
8 | declare const FormattedDateTimeRange: React.FC<Props>;
|
9 | export default FormattedDateTimeRange;
|