interface QuestCardProps { name: string; chain: string; participants: number; rewards: any; source: string; profilePic: string; spaceProfilePic: string; spaceName: string; onClick: () => void; hasUserClaimed: boolean; } declare const QuestCard: ({ name, chain, participants, rewards, source, profilePic, onClick, spaceProfilePic, spaceName, hasUserClaimed, }: QuestCardProps) => import("react/jsx-runtime").JSX.Element; export default QuestCard; //# sourceMappingURL=QuestCard.d.ts.map