import type { ReactNode } from 'react';
export interface FaqGridProps {
    /** An even number of `FaqItem`s, four in the template. */
    children: ReactNode;
}
/**
 * Two-column grid of FAQ cards (`.kwac-faq`), max 960px, stacked below 740px.
 * Belongs on an `alt` band.
 */
export declare function FaqGrid({ children }: FaqGridProps): import("react").JSX.Element;
