import { Location } from 'src/types';
export declare function setLocation(location: Location): {
    '@type': string;
    name?: string | undefined;
    sameAs?: string | undefined;
    url: string;
} | {
    address: {
        streetAddress: string;
        addressLocality: string;
        addressRegion?: string | undefined;
        postalCode: string;
        addressCountry: string;
        '@type': string;
    } | undefined;
    '@type': string;
    name: string;
    sameAs?: string | undefined;
} | undefined;
