import type { GenerateConfig } from '../../generate'; import type { Locale, OnSelect } from '../../interface'; import type { SharedTimeProps } from '.'; import type { Ref } from 'vue'; export declare type BodyOperationRef = { onUpDown: (diff: number) => void; }; export declare type TimeBodyProps = { prefixCls: string; locale: Locale; generateConfig: GenerateConfig; value?: DateType | null; onSelect: OnSelect; activeColumnIndex: number; operationRef: Ref; } & SharedTimeProps; declare const TimeBody: import("vue").DefineComponent, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ readonly value?: unknown; readonly prefixCls?: unknown; readonly onSelect?: unknown; readonly disabledTime?: unknown; readonly generateConfig?: unknown; readonly showHour?: unknown; readonly showMinute?: unknown; readonly showSecond?: unknown; readonly use12Hours?: unknown; readonly hourStep?: unknown; readonly minuteStep?: unknown; readonly secondStep?: unknown; readonly hideDisabledOptions?: unknown; readonly disabledHours?: unknown; readonly disabledMinutes?: unknown; readonly disabledSeconds?: unknown; readonly operationRef?: unknown; readonly activeColumnIndex?: unknown; } & { value: any; prefixCls: any; onSelect: any; disabledTime: any; generateConfig: any; showHour: any; showMinute: any; showSecond: any; use12Hours: any; hourStep: any; minuteStep: any; secondStep: any; hideDisabledOptions: any; disabledHours: any; disabledMinutes: any; disabledSeconds: any; operationRef: any; activeColumnIndex: any; } & {}>, { value: any; prefixCls: any; onSelect: any; disabledTime: any; generateConfig: any; showHour: any; showMinute: any; showSecond: any; use12Hours: any; hourStep: any; minuteStep: any; secondStep: any; hideDisabledOptions: any; disabledHours: any; disabledMinutes: any; disabledSeconds: any; operationRef: any; activeColumnIndex: any; }>; export default TimeBody;