/** * Get hash param (if available) in the url. * @param {string} source */ export function getHashParam(source: string): string | null; /** * @typedef {{ emit?: boolean }} PluginOptions */ /** * Instantiate a plugin that converts URL references into static import * in order to handle assets bundling. * @param {PluginOptions} options * @returns An esbuild plugin. */ export default function _default({ emit }?: PluginOptions): import("esbuild").Plugin; export type PluginOptions = { emit?: boolean; };