import type React from 'react'; export interface Props { value?: [string, string]; onChange?: (value: [string, string]) => void; /** * 指定根元素组件类型 */ as?: React.ElementType; } export default function DateTimePickerRange(props: Props): JSX.Element;