UNPKG

antd

Version:

An enterprise-class UI design language and React-based implementation

18 lines (17 loc) 554 B
/// <reference types="react" /> import React from 'react'; export default class RangePicker extends React.Component<any, any> { static defaultProps: { prefixCls: string; allowClear: boolean; showToday: boolean; }; constructor(props: any); componentWillReceiveProps(nextProps: any): void; clearSelection: (e: any) => void; handleChange: (value: any) => void; handleOpenChange: (open: any) => void; setValue(value: any): void; renderFooter: () => JSX.Element | null; render(): JSX.Element; }