export interface UclLandscape { url: string; landscapeEnvironment: LandscapeEnvironment; } declare enum LandscapeEnvironment { Live = "live", Canary = "canary", Dev = "dev", Staging = "staging" } export declare function getUclLandscape(): UclLandscape; export declare function measurePerformance any>(fn: T, detail?: unknown, thisArg?: unknown): (...args: Parameters) => Promise>>; export {};