import { type HTMLAttributes } from "react"; export interface FAQProps extends HTMLAttributes { } export declare const FAQ: import("react").ForwardRefExoticComponent>; export interface FAQItemProps extends HTMLAttributes { question: string; answer?: string; } export declare const FAQItem: import("react").ForwardRefExoticComponent>;