import type { ReactNode } from 'react';
export interface SpecGridProps {
    /** Two `SpecColumn`s, e.g. "Anhängerkupplung" and "Elektrosatz". */
    children: ReactNode;
}
/**
 * Two-column grid of spec panels (`.kwac-specs`), max 960px. Single column
 * below 740px. Put it inside a `Section alt`.
 */
export declare function SpecGrid({ children }: SpecGridProps): import("react").JSX.Element;
