import { DAO } from "../types";
import { BASE_CLASS_NAME_MAP } from "../styles";
export default function FocusChannels({ daos, cn, mongoBFFUrl, memberAddress, markAsReadEndpoint, authenticated, verifyRequired, }: {
    daos: DAO[];
    cn: typeof BASE_CLASS_NAME_MAP;
    mongoBFFUrl: string;
    memberAddress: string;
    markAsReadEndpoint: string;
    authenticated: boolean;
    verifyRequired: boolean;
}): JSX.Element;
