import { TimePanelUnit } from '@mezzanine-ui/core/time-panel'; export interface TimePanelColumnProps { /** * The active unit of time. */ activeUnit?: TimePanelUnit['value']; /** * `cellHeight` controls the scroll positioning. This should meet the value of the computed cell height. */ cellHeight?: number; /** * Change handler. Takes `TimePanelUnit` as its argument. */ onChange?: (unit: TimePanelUnit) => void; /** * Display units inside the column. */ units: TimePanelUnit[]; } /** * The react component for `mezzanine` time panel column. */ declare const TimePanelColumn: import("react").ForwardRefExoticComponent>; export default TimePanelColumn;