cdbreact
Version:
Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps
20 lines (19 loc) • 577 B
TypeScript
import React from "react";
import PropTypes from "prop-types";
interface Props {
entries?: any;
onChange?: any;
value?: number;
label?: any;
}
declare const DataTableSelect: {
(props: Props): React.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 };