export default class DropdownPicker extends React.Component { static propTypes: { dataHook: PropTypes.Requireable; className: PropTypes.Requireable; caption: PropTypes.Requireable; options: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; selectedId: PropTypes.Requireable; ariaLabel: PropTypes.Requireable; ariaLabelledBy: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); state: { open: boolean; visibleOptions: any; }; componentDidUpdate(prevProps: any): void; _onSelect: (data: any) => void; _toggle: () => void; _onKeyDown: (e: any, delegateKeyDown: any) => void; _close: () => void; _open: () => void; _fetchMoreOptions: () => void; render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=DatePickerDropdown.d.ts.map