import React from 'react'; import type { WrappedComponentProps } from 'react-intl-next'; import type { MarkDataAttributes } from '../../ui/annotations/element/useInlineAnnotationProps'; export interface Props extends MarkDataAttributes { parentIsIncompleteTask?: boolean; timestamp: string; } export declare const DateComponent: React.FC> & { WrappedComponent: React.ComponentType; }; declare function DateWithFormatContext(props: Props): React.JSX.Element; export default DateWithFormatContext;