import { ElementChildren, SocialItemElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type SocialElementProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | SocialItemElement["children"]; data?: SocialItemElement["data"]; }; export declare function SocialElement(props: SocialElementProps): React.JSX.Element;