import { Component } from 'react'; export interface GridStripeProps { height: number; width: number; position: 'horizontal' | 'vertical'; direction: 'all' | 'x' | 'y'; scale: any; fill: string; data: number; index: number; } export declare class GridStripe extends Component { static defaultProps: Partial; getCoords(): { y: number; x: any; height: number; width: any; fill: string; } | { y: any; x: number; height: any; width: number; fill: string; }; render(): JSX.Element; }