import React from "react"; interface LinkedInBadgeSelfRenderProps { locale?: string; size?: "medium" | "large"; theme?: "light" | "dark"; entity?: "PROFILE" | "COMPANY" | "GROUP"; type?: "VERTICAL" | "HORIZONTAL"; vanity?: string; version?: "v1" | "v2"; className?: string; style?: React.CSSProperties; children?: React.ReactNode; generateUidWithoutApi?: boolean; hideViewProfileButton?: boolean; id?: string; TRACKING_PARAM?: string; isCreatePage?: boolean; name?: string; noCache?: boolean; debug?: boolean; /** * If `true`, we fetch LinkedIn profile data via React Query instead of the legacy XHR approach. * Make sure React Query is configured in your app if you plan to use this feature. */ fetchViaReactQuery?: boolean; } declare const _default: React.MemoExoticComponent<({ locale, size, style, theme, vanity, version, className, type, entity, children, generateUidWithoutApi, hideViewProfileButton, id, TRACKING_PARAM, isCreatePage, name, noCache, debug, fetchViaReactQuery, }: LinkedInBadgeSelfRenderProps) => React.JSX.Element>; export default _default; //# sourceMappingURL=index.d.ts.map