import { ElementType } from "react"; //#region src/TopicTag/TopicTag.d.ts type TopicTagProps = { /** * The HTML element or React component to render as the root element */ as?: As; /** * Provide a class name for styling on the outermost element */ className?: string; } & Omit, 'as' | 'className'>; declare function TopicTag({ as, children, className, ...rest }: TopicTagProps): import("react").JSX.Element; //#endregion export { TopicTag, type TopicTagProps };