/// export declare type DatePropertyValueProps = { children: Date; format?: string; }; export declare function DatePropertyValue({ children, format }: DatePropertyValueProps): JSX.Element; export declare type DateRangePropertyValueProps = { from: Date; to: Date; }; export declare function DateRangePropertyValue({ from, to }: DateRangePropertyValueProps): JSX.Element;