import { ProfileType } from '../types';
export declare function getPersonFromLegacyFormat(profile: any): {
    "@type": ProfileType;
    account?: any[] | undefined;
    name?: string | undefined;
    description?: string | undefined;
    address?: {
        "@type": string;
        addressLocality: string;
    } | undefined;
    image?: any[] | undefined;
    website?: {
        "@type": string;
        url: string;
    }[] | undefined;
};
