import { FAQItem as FAQItemType } from '@open-formulieren/types'; export interface FAQItemsProps { /** * FAQ tooltips to provide additional information that is not crucial but may * assist users in filling out the field correctly. */ items: FAQItemType[]; } export interface FAQItemProps { label: string; content: string; } declare const FAQItems: React.FC; export default FAQItems;