import type { ReactNode } from 'react';
export interface NoteGridProps {
    /** Two `NoteCard`s. */
    children: ReactNode;
}
/**
 * Two-column grid of note cards (`.kwac-notes`), max 960px, stacked below 740px.
 */
export declare function NoteGrid({ children }: NoteGridProps): import("react").JSX.Element;
