UNPKG

cdbreact

Version:

Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps

20 lines (19 loc) 576 B
/// <reference types="react" /> import PropTypes from "prop-types"; interface Props { entries?: any; onChange?: any; value?: number; label?: any; } declare const DataTableSelect: { (props: Props): JSX.Element; propTypes: { entries: PropTypes.Validator<number[]>; label: PropTypes.Validator<string | number | object>; onChange: PropTypes.Validator<(...args: any[]) => any>; value: PropTypes.Validator<number>; }; }; export default DataTableSelect; export { DataTableSelect as CDBDataTableSelect };