import type { ComponentProps } from "../../types/index.js"; import type { VeryfrontConfig } from "../../config/index.js"; interface DevScriptsOptions { /** Skip hmr.js when preview-hmr.js will be used (proxy mode) */ skipDevHMR?: boolean; /** Skip error logger when endpoint is not available (preview mode) */ skipErrorLogger?: boolean; /** * Skip the client development flag. Preview serves the dev script set for * HMR, but its output is user-facing, so it must not switch on * development-only client behaviour such as configuration warnings. */ skipDevFlag?: boolean; } export declare function getDevScripts(_slug: string, config: VeryfrontConfig, _params?: Record, _props?: ComponentProps, nonce?: string, options?: DevScriptsOptions): string; export {}; //# sourceMappingURL=dev-scripts.d.ts.map