import { IconModalProps } from '../../../../components'; import { InputWidthVariant } from '../../../../functions'; import { TimePickerProps as MuiTimePickerProps } from '@mui/x-date-pickers'; import { ReactNode } from 'react'; export type TimePickerProps = MuiTimePickerProps & { id?: string; label: ReactNode; helpMessage?: ReactNode; value: Date | null; onChange: (nextValue: Date | null) => void; error?: boolean; errorMessage?: ReactNode; inputWidth?: InputWidthVariant; infoTooltipProps?: IconModalProps; }; export declare const TimePicker: import('react').ForwardRefExoticComponent & { id?: string; label: ReactNode; helpMessage?: ReactNode; value: Date | null; onChange: (nextValue: Date | null) => void; error?: boolean; errorMessage?: ReactNode; inputWidth?: InputWidthVariant; infoTooltipProps?: IconModalProps; } & import('react').RefAttributes>;