import React, { CSSProperties, ReactNode } from 'react'; import { Dayjs } from 'dayjs'; export interface DateInputRangeProps { style?: CSSProperties; className?: string | string[]; status?: 'error' | 'warning'; disabled?: boolean | boolean[]; placeholder?: string[]; value?: Dayjs[]; popupVisible?: boolean; format?: string | string[]; size?: 'small' | 'middle' | 'large'; allowClear?: boolean; onClear?: (e: any) => void; onPressEnter?: () => void; onPressTab?: (e: any) => void; editable?: boolean; suffixIcon?: ReactNode; onChange?: (e: any) => void; inputValue?: string; separator?: ReactNode; changeFocusedInputIndex?: (index: number, silent?: boolean) => void; focusedInputIndex?: number; isPlaceholder?: boolean; prefix?: ReactNode; inputProps?: React.InputHTMLAttributes[]; onBlur?: (e: any) => void; /** * 静态模式 */ quickStatic?: boolean; /** * 快速编辑(默认无边框) */ quickEdit?: boolean; } declare type DateInputHandle = { focus: () => void; blur: () => void; }; declare const _default: React.ForwardRefExoticComponent>; export default _default;