import type { RsbuildPlugin } from '@rsbuild/core'; import { type ZephyrBuildHooks } from 'zephyr-rspack-plugin'; export interface ZephyrRsbuildPluginOptions { wait_for_index_html?: boolean; hooks?: ZephyrBuildHooks; } export declare function withZephyr(options?: ZephyrRsbuildPluginOptions): RsbuildPlugin;