import type { ContactPoint } from 'src/types';
export declare function setContactPoints(contactPoint?: ContactPoint[]): {
    contactType: string;
    telephone: string;
    email?: string | undefined;
    areaServed?: string | string[] | undefined;
    availableLanguage?: string | string[] | undefined;
    contactOption?: string | string[] | undefined;
    '@type': string;
}[] | undefined;
