import { Profile, GeoLocation, NinetailedRequestContext } from '@ninetailed/experience.js-shared'; type Cookies = { [key: string]: string; }; type GetServerSideProfileOptions = { ctx: NinetailedRequestContext; cookies: Cookies; clientId: string; environment?: string; url?: string; ip?: string; location?: GeoLocation; }; export declare const fetchEdgeProfile: ({ ctx, cookies, clientId, environment, url, ip, location, }: GetServerSideProfileOptions) => Promise; export {};