import React, { ComponentType } from 'react'; import { type WithFormatProps, type DateMaskProps } from './types'; export declare function getDateModeInfo(format: string): { separator: string; mode: string; }; export declare const WithFormat:
(Component: React.ComponentType
) => React.FC
;