UNPKG

738 BTypeScriptView Raw
1import * as React from 'react';
2import AbstractPicker from './AbstractPicker';
3import * as PropTypes from 'prop-types';
4export declare const nonsense: JSX.Element;
5export default class Picker extends AbstractPicker {
6 static defaultProps: {
7 triggerType: string;
8 prefixCls: string;
9 pickerPrefixCls: string;
10 popupPrefixCls: string;
11 format: (values: React.ReactNode[]) => string | React.ReactNode[];
12 cols: number;
13 cascade: boolean;
14 title: string;
15 };
16 static contextTypes: {
17 antLocale: PropTypes.Requireable<object>;
18 };
19 protected popupProps: {
20 WrapComponent: string;
21 transitionName: string;
22 maskTransitionName: string;
23 };
24}