/** * Converts a file path to a valid ESM import specifier. * On Windows, absolute paths (e.g. "C:/...") must be file:// URLs for the ESM loader. */ export declare const toImportSpecifier: (inputPath: string) => string;