import React from 'react'; import { LineProps } from '@vx/shape/lib/shapes/Line'; import { ScaleInput } from '@vx/scale'; import { CommonGridProps, GridScale } from '../types'; export declare type GridColumnsProps = CommonGridProps & { /** `@vx/scale` or `d3-scale` object used to convert value to position. */ scale: Scale; /** * Exact values used to generate grid lines using `scale`. * Overrides `numTicks` if specified. */ tickValues?: ScaleInput[]; /** Total height of each grid column line. */ height: number; }; export declare type AllGridColumnsProps = GridColumnsProps & Omit, keyof LineProps>, keyof GridColumnsProps>; export default function GridColumns({ top, left, scale, height, stroke, strokeWidth, strokeDasharray, className, numTicks, lineStyle, offset, tickValues, children, ...restProps }: AllGridColumnsProps): JSX.Element; //# sourceMappingURL=GridColumns.d.ts.map