import type { MoonshineModelArch } from '../types/interfaces'; export interface MoonshineWebConfig { modelAssetBasePath?: string; onnxRuntimeWasmBasePath?: string; } export declare function configureMoonshineWeb(nextConfig: MoonshineWebConfig): void; export declare function getMoonshineWebConfig(): Readonly; export declare function detectMoonshineWebAssetBasePath(): string; export declare function detectMoonshineOnnxRuntimeWasmBasePath(): string; export declare function normalizeMoonshineWebModelArch(modelArch: MoonshineModelArch | number): 'tiny' | 'base'; export declare function resolveMoonshineWebModelBasePath(candidatePath: string | undefined, modelArch: 'tiny' | 'base'): string; export declare function getMoonshineWebRuntimeVersion(): number; //# sourceMappingURL=config.d.ts.map