import type { ImageOverrideOptions } from "./types.js"; export declare const CODE_EXTENSIONS: readonly string[]; export declare const IGNORED_DIRS: ReadonlySet; export declare function findCodeFiles(dir: string, found?: string[]): Promise; export declare function extractImageReferences(code: string): string[]; export declare function extractImageOverrides(code: string): Record; export declare function collectUsedImageOverrides(root: string, publicDir?: string): Promise>; export declare function collectUsedImages(root: string, publicDir?: string): Promise;