import { Time } from './time-picker/types'; export declare const getCurrentTime: () => Time; export declare const convertDateToTime: (d: Date) => Time; export declare const convertTimeToDate: (t: Time, d?: Date | undefined) => Date;