export default class Picker extends React.Component { /** @type {PickerProps} */ static defaultProps: PickerProps; constructor(props: any); index: any[]; state: { pickerValue: any[]; hidden: boolean; fadeOut: boolean; height: never[]; }; handlePrpos(nextProps?: Readonly & Readonly<{ children?: React.ReactNode; }>): void; pickerDate: { _value: string | boolean; _start: string | boolean; _end: string | boolean; _updateValue: any[]; } | undefined; componentWillReceiveProps(nextProps: any): void; verifyValue(value: any, range: any): boolean; verifyTime(value: any): boolean; compareTime(t1: any, t2: any): boolean; getMonthRange(fields?: string): string[]; getDayRange(fields?: string): string[]; getDateArrIndex(value: any, fields: any, getIdx?: boolean): string | number; getDateRange(begin: any, end: any, fields?: string): string[]; hidePicker(): void; componentWillUnmount(): void; render(): JSX.Element; } import React from "react";