import * as React from 'react';

/**
 * NoteGrid — from @kuppwest/apple-clean@0.1.0.
 */
export interface NoteGridProps {
  /** Two `NoteCard`s. */
  children: React.ReactNode;
}

export declare const NoteGrid: React.ComponentType<NoteGridProps>;
