import React from 'react';
import { CategoryTopic, Community, Topic } from "../../../../../interfaces/types";
type Props = {
    currentCommunity: Community | null;
    selectedTopics: (CategoryTopic | Topic)[];
    isLoading: boolean;
    clickOtherCommunity: () => void;
    onSubmitPost: (uncategorized?: boolean) => void;
};
declare const SuggestedCommunity: ({ currentCommunity, selectedTopics, isLoading, clickOtherCommunity, onSubmitPost, }: Props) => React.JSX.Element;
export default SuggestedCommunity;
