import type { FontsPackageInfo } from "./fontInfo.ts"; /** * Retrieves font package information for a given package name. * * Resolves the path to the package.json of the specified font package, then constructs the directory and CSS file path. * Returns null if the package cannot be resolved. * * @param {string} fontsPackage - The name of the font package to resolve. * @param {URL | string} [root] - Optional root directory to resolve packages from. Can be a URL or file path. * @param {string} [styleFile] - Optional path to the CSS file relative to the package root. Defaults to "src/index.css". * @returns {FontsPackageInfo | null} An object containing the fonts directory and CSS file path, or null if not found. */ export declare function getFontsPackageInfo(fontsPackage: string, root?: URL | string, styleFile?: string): FontsPackageInfo | null; //# sourceMappingURL=package.d.ts.map