UNPKG

ultraman-shop

Version:

A React component library for building e-commerce interfaces

20 lines (19 loc) 1.06 kB
import React, { FC, CSSProperties } from 'react'; declare const RangePicker: React.ForwardRefExoticComponent<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "locale" | "generateConfig" | "hideHeader"> & { locale?: import("antd/es/date-picker/generatePicker").PickerLocale | undefined; size?: import("antd/es/button").ButtonSize; placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | undefined; bordered?: boolean | undefined; status?: "" | "warning" | "error" | undefined; variant?: "outlined" | "borderless" | "filled" | "underlined" | undefined; dropdownClassName?: string | undefined; popupClassName?: string | undefined; rootClassName?: string | undefined; popupStyle?: React.CSSProperties | undefined; } & React.RefAttributes<import("rc-picker").PickerRef>>; interface IXRangePicker extends React.ComponentProps<typeof RangePicker> { className?: string; style?: CSSProperties; } declare const XRangePicker: FC<IXRangePicker>; export default XRangePicker;