import './DateTimeItem.css'; import React from 'react'; import { PropsWithJsxAttributes } from '../../../utils/types/PropsWithJsxAttributes'; export type DateTimeItemProps = PropsWithJsxAttributes<{ label: number | string; current?: boolean; selected?: boolean; disabled?: boolean; event?: boolean; role?: never; children?: never; }, 'button'>; export declare const cnDateTimeItem: import("@bem-react/classname").ClassNameFormatter; export declare const DateTimeItem: React.ForwardRefExoticComponent & React.RefAttributes>;