import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { OnClickEventType } from "../../interfaces/types/OnClickEventType"; export interface SocialInterfaceProps extends PropsInterface { icon: string; href?: string; onClick?: OnClickEventType; } export declare class Social extends PureComponent { constructor(props: any); render(): JSX.Element; }