import type { ReactNode } from 'react';
export interface DetailGridProps {
    /** Two `DetailCard`s. */
    children: ReactNode;
}
/**
 * Two-column grid of component detail cards (`.kwac-detail`), max 960px,
 * stacked below 740px. Use it for the "two components, one team" band.
 */
export declare function DetailGrid({ children }: DetailGridProps): import("react").JSX.Element;
