import { FunctionComponent, HTMLProps } from 'react'; import { Omit } from '../../typeUtils'; export interface DataListProps extends Omit, 'aria-label'> { 'aria-label': string; } declare const DataList: FunctionComponent; export default DataList;