/// interface Props { id: string; image: string; name: string; designation: string; location: string; bio: string; skills: string[]; userActivity: string; acceptRate: string; profileReach: string; collaboration: string; testimonials: { company: string; image: string; }[]; link: string; state?: object; } declare const ProfileCard: ({ id, image, name, designation, location, bio, skills, userActivity, acceptRate, profileReach, collaboration, testimonials, link, state, }: Props) => JSX.Element; export default ProfileCard; export declare const InfoIconWrapper: import("styled-components").StyledComponent<"span", any, {}, never>;