import * as React from 'react';

/**
 * FaqGrid — from @kuppwest/apple-clean@0.1.0.
 */
export interface FaqGridProps {
  /** An even number of `FaqItem`s, four in the template. */
  children: React.ReactNode;
}

export declare const FaqGrid: React.ComponentType<FaqGridProps>;
