import { Jurisdiction } from '../../lib/entity-id.js'; import { Locale } from '../../i18n/widgets/index.js'; export interface CompanyCardProps { publishableKey: string; companyId: string; locale?: Locale; /** * Required jurisdiction. The SDK uses it to build the country-scoped * URL (/v1/se/companies/... | /v1/us/companies/... | /v1/no/companies/...) * and to validate the id shape (10-digit SE orgnr, 1-10-digit US CIK, * 9-digit NO orgnr) before the network call. * * As of v2.0 this prop is REQUIRED - the legacy /v1/companies/{id} * polymorphic alias was removed from the API. */ jurisdiction: Jurisdiction; } export declare function CompanyCard({ publishableKey, companyId, locale, jurisdiction }: CompanyCardProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=CompanyCard.d.ts.map