import { IconName } from '../IconSvg';
export type TopicProps = {
    isSubscribed: boolean;
    isLoading: boolean;
    icon: IconName;
    name?: string;
    nameHref?: string;
    onToggleSubscribe: () => void;
};
/**
 * Represents a single object on which a Synapse user has subscribed to notifications
 * @param props
 * @constructor
 */
export default function Topic(props: TopicProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Topic.d.ts.map