import { DateType } from '@mezzanine-ui/core/calendar'; import { TimePanelProps } from '../TimePanel'; import { InputTriggerPopperProps } from '../_internal/InputTriggerPopper'; export interface TimePickerPanelProps extends Pick, Pick { /** * Change Handler. Receive `DateType` as props. */ onChange?: (value?: DateType) => void; /** * Called when the user cancels time selection. */ onCancel?: VoidFunction; /** * Called when the user confirms time selection. */ onConfirm?: VoidFunction; /** * Other props you may provide to `Popper` component */ popperProps?: Omit; /** * Display value of the panel. */ value?: DateType; } /** * The react component for `mezzanine` time picker panel. */ declare const TimePickerPanel: import("react").ForwardRefExoticComponent>; export default TimePickerPanel;