import React from 'react';
import { Address, OrganizationCategory } from '../types';
import { ContactPoint } from './corporateContact';
export interface OrganizationJsonLdProps {
    organizationType?: OrganizationCategory;
    id?: string;
    name: string;
    logo?: string;
    url: string;
    legalName?: string;
    sameAs?: string[];
    address?: Address;
    contactPoints?: ContactPoint[];
}
declare const OrganizationJsonLd: React.FC<OrganizationJsonLdProps>;
export default OrganizationJsonLd;
