type GetUrlOptions = { env?: "dev" | "staging" | "sandbox" | "prod"; sri?: boolean; baseUrl?: string; }; export declare const getUrl: (options?: GetUrlOptions) => string; export {};