import type { ContainerWidth } from '../@types/global'; import type { FaqItem } from './types'; interface Props { /** * Question/answer pairs. Each answer is a markdown string. Malformed * entries (missing question or answer) are skipped, and the whole section * is omitted when none remain. */ faq: FaqItem[]; /** * Section heading. */ title?: string; /** * Width of the component within the text well. */ width?: ContainerWidth; /** * Add extra classes to the block tag to target it with custom CSS. */ class?: string; /** * Add an id to the block tag to target it with custom CSS. */ id?: string; } /** * A collapsible FAQ section built from question-and-answer pairs using native, accessible `
` disclosures. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-text-elements-faqbox--docs) */ declare const FaqBox: import("svelte").Component; type FaqBox = ReturnType; export default FaqBox;