import { MultilingualString } from "@omnia/fx/models"; export interface YammerFeedSettings { title?: MultilingualString; darktheme: boolean; height: number; feedType: FeedType; customPublisherPrompt?: string; defaultCommunityForPosting?: string; searchForTheSource?: string; showHeader?: boolean; showNetworkNameInHeader?: boolean; showFooter?: boolean; includeCommunityInformationAtTopOfFeed?: boolean; } export declare enum FeedType { Home = 1, Community = 2, User = 3, Topic = 4 }