///
export declare type FaqItemProps = {
question: string;
answer: string;
};
export declare type FaqSectionProps = Readonly<{
className?: string;
mainTitle?: string;
items: Array;
expandLabel: string;
buttonLabel?: string;
buttonHref?: string | JSX.Element;
}>;
/**
* A specialized section with multiple expandable paragraphs with Questions & Answers.
*/
export declare const FaqSection: (props: FaqSectionProps) => JSX.Element;