@mattilsynet/designsystem-svelte
Version:
Design system for Mattilsynet
17 lines (16 loc) • 499 B
TypeScript
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;