declare global { interface Window { __TOLGEE_IN_CONTEXT_URL__?: string; } } export declare function loadInContextLib(version: string): Promise<(props?: import("../types").InContextOptions) => import("@tolgee/core").TolgeePlugin>; export declare function inContextLibSrc(version: string): string; export declare function trustedOverrideUrl(): string | undefined; type LocationLike = { origin: string; hostname: string; href: string; }; export declare function isTrustedInContextUrl(override: string | undefined, location: LocationLike): boolean; export {};