/** * Generate the full path to an image asset based on the base asset path. * * - If `assetBasePath` is provided, it is used as the base path. * - If not, attempts to use Stencil's `getAssetPath` (for Stencil/Angular builds). * - If that fails, attempts to recover the asset base path from the current * document context before falling back to `/assets/`. * * @param imageName - The name of the image file. * @param assetBasePath - Optional base path for assets. * @param assetPathResolver - Injectable resolver used for testability. * @returns The full image path as a string. */ export declare function getImageAssetSrcPath( imageName: string, assetBasePath?: string, assetPathResolver?: (path: string) => string, ): string;