import type { EntryMapItem } from '../types/types-entry-map.js'; import type { FlatEvolveOptions } from '../types/types-options.js'; /** * Causeof we expose a component from `@wove/react` it can be optimized via icon-loader. * limitation assets match `svg-icons/**\/*.svg` to icon loader resolver. * @param resource * @returns */ export declare const isIconSvg: (resource: string) => boolean; /** * Get the asset filename based on the entry configuration. * This function determines the output path for assets by matching them against entry points. * * @param filename - The original filename of the asset * @param entryMapItemList - List of entry configurations * @param evolveOptions - Configuration options containing project paths * @returns The formatted asset filename with content hash */ export declare const getEntryAssetFileName: (filename: string, entryMapItemList: EntryMapItem[], evolveOptions: FlatEvolveOptions) => string;