UNPKG

grommet

Version:

focus on the essential experience

21 lines (15 loc) 485 B
import * as React from 'react'; import { BoxProps } from '../Box/index'; export interface DataTableGroupByProps { options: string[] | { label: string; property: string }[]; } type selectProps = Omit< JSX.IntrinsicElements['select'], 'onClick' | 'property' >; export interface DataTableGroupByExtendedProps extends BoxProps, DataTableGroupByProps, selectProps {} declare const DataTableGroupBy: React.FC<DataTableGroupByExtendedProps>; export { DataTableGroupBy };