export interface ChartGridProps {
    /** Show horizontal grid lines (default: true) */
    horizontal?: boolean;
    /** Show vertical grid lines */
    vertical?: boolean;
}
/**
 * Grid lines behind chart marks.
 *
 * @example
 * ```
 * <ChartGrid horizontal />
 * <ChartGrid horizontal vertical />
 * ```
 */
export declare function ChartGrid({ horizontal, vertical, }: ChartGridProps): import("react").JSX.Element;
//# sourceMappingURL=ChartGrid.d.ts.map