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; export { DataTableGroupBy };