import { type JSX } from 'react'; import { type GridProps } from '@dynatrace/strato-components/layouts'; /** * @internal */ export interface ChartGridAreaProps extends Omit, 'children'> { gridArea: string; className?: string; children: (props: { availableWidth: number; availableHeight: number; }) => JSX.Element; } /** * A grid area in the that automatically adjusts its size to fit its container. * @internal */ export declare const ChartGridArea: ({ gridArea, children, ...rest }: ChartGridAreaProps) => import("react/jsx-runtime.js").JSX.Element;