You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
352 B
13 lines
352 B
import * as React from 'react';
|
|
import { IPickerProps } from './PickerTypes';
|
|
declare class Picker extends React.Component<IPickerProps, {}> {
|
|
static defaultProps: {
|
|
children: any[];
|
|
};
|
|
static Item(): void;
|
|
getValue(): any;
|
|
shouldComponentUpdate(nextProps: any): boolean;
|
|
render(): JSX.Element;
|
|
}
|
|
export default Picker;
|