import { LOCALE, SocialType } from "../interfaces/types";
export declare const getSocialList: ({ shareUrl, size, locale, }: {
    shareUrl: string;
    size?: number;
    locale: LOCALE;
}) => {
    icon: JSX.Element;
    name: string;
    type: SocialType;
    href: string;
    allowedLocales?: LOCALE[];
}[];
