/** * Resolve a bare module import (e.g. "@absolutejs/absolute/svelte/components/Image.svelte") * to an absolute file path by reading the package's exports map in package.json. * * Returns the resolved absolute path, or null if the import can't be resolved. */ type ExportConditions = 'browser' | 'import'; export declare const resolvePackageImport: (specifier: string, conditions?: ExportConditions[]) => string | null; export {};