import * as React from 'react';

/**
 * FaqItem — from @kuppwest/apple-clean@0.1.0.
 */
export interface FaqItemProps {
  /** The question, phrased as the customer would ask it. */
  question: string;
  /** The answer: one or two direct sentences, no accordion. */
  children: React.ReactNode;
}

export declare const FaqItem: React.ComponentType<FaqItemProps>;
