import type { InternalMode, Locale, SharedPickerProps, SharedTimeProps } from '../interface'; export interface ComponentProps { picker?: InternalMode; showTime?: boolean | Partial>; locale: Locale; format?: SharedPickerProps['format']; } /** * Get `showHour`, `showMinute`, `showSecond` or other from the props. * This is pure function, will not get `showXXX` from the `format` prop. */ export declare function getTimeProps(componentProps: ComponentProps): [ showTimeProps: SharedTimeProps, showTimePropsForLocale: SharedTimeProps, showTimeFormat: string, propFormat: string ]; export declare function fillShowTimeConfig(picker: InternalMode, showTimeFormat: string, propFormat: string, timeConfig: SharedTimeProps, locale: Locale): SharedTimeProps;