import type { Component, ComponentClass, ForwardedRef } from 'react'; import type { PickerProps, RangePickerProps } from '.'; export interface CommonPickerMethods { focus: () => void; blur: () => void; } export interface PickerComponentClass

extends ComponentClass { new (...args: ConstructorParameters>): InstanceType> & CommonPickerMethods; } export declare type PickerRef

= ForwardedRef & CommonPickerMethods>; export declare type DatePickRef = PickerRef>; export declare type RangePickerRef = PickerRef>; export declare enum DateTimeType { DATE = "date", WEEK = "week", MONTH = "month", YEAR = "year", TIME = "time", QUARTER = "quarter" }