import type { GridProps } from './types'; /** * __Grid__ * * A container for one or more `GridColumn`. * * This is the internal component, which relies on the context provided by the * grid wrapper. * * @internal */ export declare const Grid: ({ layout, testId, children }: GridProps) => JSX.Element;