///
import { TooltipComponent } from '../Tooltip/types';
type Period = 'AM' | 'PM';
type Format = '12' | '24';
export interface TimePickerProps {
onChange?: (value: {
time: string;
period?: Period;
}) => void;
onBlur?: (e: React.FocusEvent) => void;
disabled?: boolean;
required?: boolean;
label?: string;
id?: string;
value?: string;
tooltipContent?: string;
tooltipPosition?: TooltipComponent.Position;
format?: Format;
period?: Period;
onlyHours?: boolean;
}
export {};