import { FC } from 'react'; import dayjs, { Dayjs } from 'dayjs'; export declare function getNearestStepMinutes(date: Dayjs, options?: { minutesStep?: number; }): dayjs.Dayjs; export type ZTimePickerProps = { className?: string; style?: React.CSSProperties; format?: string; showSecond?: boolean; minutesStep?: number; secondsStep?: number; confirmLabel?: React.ReactNode; cancelLabel?: React.ReactNode; size?: 'small' | 'medium'; value?: Date; onChange?: (value: Date | null) => void; defaultValue?: dayjs.Dayjs; enableReset?: boolean; ampm?: boolean; }; export declare const ZTimePicker: FC;