/** Inject assets into an html element */
export declare function injectAssets(
/** Html partial that should be injected into the html file. */
html: string, assets: ({
    location?: 'head' | 'body' | 'base';
} & ({
    url: string;
} | {
    text: string;
}))[], options?: {
    /** Url part that will be replaced from the assetUrls */
    replaceUrlPrefix?: string;
    /** baseHref that will be prefixed to all asset urls */
    baseHref?: string;
}): Buffer;
