import { default as React } from 'react'; import { default as ReferEarnThemeManager } from '../comopnents/referEarnThemeManager'; import { ReferEarnStyleConfig, ReferQuestThemeData } from '../comopnents/referEarnTypes'; interface ReferEarnContextType { shareCode: string; copy: boolean[]; setCopy: React.Dispatch>; themeManager: ReferEarnThemeManager; handleCopy: (index: number) => void; handleSocialShare: (platform: string) => void; secondaryIconColor: string; showReferralCode: boolean; referralLink: string; heading: string; description: string; shareButtonText: string; showRefferalLogo: boolean; questThemeData?: ReferQuestThemeData; styleConfig?: ReferEarnStyleConfig; footerLink?: string; } export declare const ReferEarnContext: React.Context; export declare const useReferEarn: () => ReferEarnContextType; export {};