import './DateTimeLabel.css'; import React from 'react'; import { PropsWithHTMLAttributes } from '../../../utils/types/PropsWithHTMLAttributes'; export type DateTimeLabelProps = PropsWithHTMLAttributes<{ label: string | number; align?: 'left' | 'center' | 'right'; children?: never; cursor?: 'pointer'; }, HTMLDivElement>; export declare const cnDateTimeLabel: import("@bem-react/classname").ClassNameFormatter; export declare const DateTimeLabel: React.FC;