type GlossaryTerm = { slug: string; term: string; definition: string; }; type FaqItem = { question: string; answer: string; }; type Guide = { slug: string; title: string; shortDescription: string; category: string; }; interface LandingPageKnowledgebaseContentProps { guides: Guide[]; glossaryTerms: GlossaryTerm[]; faqItems: FaqItem[]; } export declare function LandingPageKnowledgebaseContent({ guides, glossaryTerms, faqItems, }: LandingPageKnowledgebaseContentProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=KnowledgebaseContent.d.ts.map