import { default as React } from 'react'; import { OnChainVTableProps, VTableColumn } from './type'; import { WholeRow } from './feature/types'; import { ITextStyleOption } from '@visactor/vtable/es/ts-types'; import * as VTable from '@visactor/vtable'; type ParametersOne any> = T extends (args: infer P) => any ? P : never; type Column = VTable.ColumnsDefine[0]; export declare function generateColumns(propsColumns: VTableColumn[], cellStyles?: ITextStyleOption): Column[]; declare const OnChainVTable: (props: ParametersOne>>) => import("react/jsx-runtime").JSX.Element; export default OnChainVTable;