declare const FactsQuestionsAnswers: import("svelte").Component<{
    title?: string;
    facts?: string;
    disclosureHeadClass?: string;
    loadJs?: boolean;
    questionsAnswers?: Array<{
        question: string;
        answer: string;
        imageUrl?: string;
        imageAltText?: string;
        caption?: string;
    }>;
    headerTag?: "h1" | "h2" | "h3" | "h4";
}, {}, "">;
type FactsQuestionsAnswers = ReturnType<typeof FactsQuestionsAnswers>;
export default FactsQuestionsAnswers;
