export type NormalizedBase = `/${string}` | ""; /** * Normalises SvelteKit's base path value to always be an absolute path - or an empty string. * * @param baseValue - The { base } value exported from "$app/paths" * @param currentUrl - The current URL of the page */ export declare function normaliseBase(baseValue: string, currentUrl: URL): NormalizedBase; //# sourceMappingURL=normaliseBase.d.ts.map