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