import type { CategoricalValueScales } from '../../types/categorical-bar-chart.js'; interface GridLayoutProps { layout: 'horizontal' | 'vertical'; scale: CategoricalValueScales; width: number; height: number; } export declare const GridLayout: { ({ layout, scale, width, height, }: GridLayoutProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};