import type { Plugin } from "vite"; /** * Vite plugin that configures `renderBuiltUrl` for resolving asset imports * to filesystem paths at runtime. * * When `assetBase` is provided, assets resolve relative to the executable * directory using `path.join(path.dirname(process.execPath), assetBase, filename)`. * This supports FHS-compliant layouts where assets live in `../share//`. * * When `assetBase` is omitted, assets resolve relative to the bundle file * via `import.meta.url`, which works when assets are co-located with the * executable. * * Only applies when the user has not already configured * `experimental.renderBuiltUrl` in their Vite config. */ export declare function gtkxBuiltUrl(assetBase?: string): Plugin; //# sourceMappingURL=vite-plugin-gtkx-built-url.d.ts.map