/** * Aesthetic CSS loader — reads palette CSS files from skills/_shared/aesthetics/ * at render time. Used by every deterministic renderer that produces fgraph or * chart output (and, eventually, slides / guides / recaps when those go * deterministic). * * Path resolution: tries two candidate directories in order, uses the first * that exists. Production install ships skills/ both at the package root * (per package.files) AND mirrored at dist/skills/ (per the prebuild script * in package.json), so either layout resolves cleanly. */ import type { FgraphAesthetic } from "../types.js"; /** Read and cache an aesthetic CSS file. */ export declare function loadAestheticCss(aesthetic: FgraphAesthetic): string; //# sourceMappingURL=aesthetic-loader.d.ts.map