export interface PairArrowCellProps { /** * The value to be encoded in the cell. */ value: number; extent?: any; contextVals?: number[]; /** * Color to be applied to bars corresponding to positive values. */ positiveColor?: string | ((value: number) => string); /** * Color to be applied to bars corresponding to negative values. */ negativeColor?: string | ((value: number) => string); /** * Width of cell (in pixels). */ width?: number; [key: string]: any; } //# sourceMappingURL=PairArrowCellProps.d.ts.map