import { default as React, PropsWithChildren } from 'react'; export type Topic = PropsWithChildren; export declare const Topic: ({ children }: Topic) => React.JSX.Element; export type TopicHeader = { As?: "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "a"; title?: React.ReactNode; } & PropsWithChildren; export declare const TopicHeader: (props: TopicHeader) => React.JSX.Element; export declare const TopicContent: (props: { url?: string; title?: string; children: React.ReactNode; }) => React.JSX.Element; export declare const TopicItem: (props: { url?: string; title?: string; children: React.ReactNode; }) => React.JSX.Element;