declare const BUNDLER_NAMESPACE_SPECIFIER = "@trebired/bundler/namespace"; type ScssNamespaceContext = { namespacePrefixes: Map; rootDir: string; }; declare function toNamespaceUrl(ownerRoot: string): URL; declare function resolveNamespaceOwnerRoot(rootDir: string, containingUrl?: URL | null): string; declare function loadSassNamespace(context: ScssNamespaceContext, canonicalUrl: URL): { contents: string; syntax: "scss"; } | null; export { BUNDLER_NAMESPACE_SPECIFIER, loadSassNamespace, resolveNamespaceOwnerRoot, toNamespaceUrl, }; export type { ScssNamespaceContext }; //# sourceMappingURL=namespace.d.ts.map