UNPKG

@visactor/react-vtable

Version:
16 lines (15 loc) 757 B
import type { BaseComponentProps } from '../base-component'; import type { TYPES } from '@visactor/vtable'; type IRowDimension = TYPES.IRowDimension; type IColumnDimension = TYPES.IColumnDimension; export type RowPivotDimensionProps = IRowDimension & BaseComponentProps; export type ColumnPivotDimensionProps = IColumnDimension & BaseComponentProps; export declare const PivotColumnDimension: { (props: ColumnPivotDimensionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; export declare const PivotRowDimension: { (props: RowPivotDimensionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; export {};