import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { SocialInterfaceProps } from "./Social"; export interface SocialIconsInterfaceProps extends PropsInterface { socials: SocialInterfaceProps[]; } export declare class SocialIcons extends PureComponent { constructor(props: any); render(): JSX.Element; }