import { SocialPlatformDTO } from "./SocialPlatformDTO"; export declare type SocialPlatformsMap = { [key: string]: SocialPlatformDTO; }; export declare type ReferralBoosterParameters = { [key: string]: { minReferred: number; }; }; export interface SocialConfig { socialApps: SocialPlatformsMap; referral: ReferralBoosterParameters; }