import React from "react"; export declare type SocialEntry = string | { href: string; newTab: boolean; }; export declare type IconWrapperProps = { entry: SocialEntry; children: React.ReactNode; className?: string; testId?: string; }; export declare function IconWrapper({ entry, children, className, testId, }: IconWrapperProps): JSX.Element; export declare type SocialConstraints = { facebook?: SocialEntry; twitter?: SocialEntry; instagram?: SocialEntry; linkedIn?: SocialEntry; mail?: SocialEntry; }; export declare type SocialsProps = { className: string; } & SocialConstraints; export declare function Socials({ className, facebook, twitter, instagram, linkedIn, mail, }: SocialsProps): JSX.Element;