1 | import * as React from 'react';
|
2 | import type { OnCustomizeScroll, ScrollConfig } from '../interface';
|
3 | export interface GridProps<RecordType = any> {
|
4 | data: RecordType[];
|
5 | onScroll: OnCustomizeScroll;
|
6 | }
|
7 | export interface GridRef {
|
8 | scrollLeft: number;
|
9 | nativeElement: HTMLDivElement;
|
10 | scrollTo: (scrollConfig: ScrollConfig) => void;
|
11 | }
|
12 | declare const ResponseGrid: React.ForwardRefExoticComponent<GridProps<any> & React.RefAttributes<GridRef>>;
|
13 | export default ResponseGrid;
|