import React, { RefObject } from 'react'; import { Time, TimePickerTranslations } from './types'; import { DropdownAlignment } from '../../atoms/types'; export interface TimePickerProps { value?: Time; onChange: (time: Time) => void; portalContainer?: RefObject; translations?: TimePickerTranslations; modalRef?: RefObject; disabled?: boolean; dropdownAlignment?: DropdownAlignment; } declare const TimePicker: ({ value, portalContainer, translations, onChange, modalRef, disabled, dropdownAlignment, }: TimePickerProps) => React.JSX.Element; export default TimePicker;