import React from 'react'; export declare type Props = { size?: 'compact' | 'default'; setTime: (time: string) => void; inputValue?: string; rightContent?: React.ReactNode; }; export declare const DatePickerTimeInput: (props: Props) => JSX.Element;