import type { ModuleAPI, MonoConfig, AssetEntry } from "./dotnet.g.d.ts"; export type * from "./dotnet.g.d.ts"; export type RuntimeConfig = MonoConfig & { assets?: AssetEntry[]; }; /** Fetches main dotnet module (dotnet.js). */ export declare function getMain(root?: string): Promise; /** Fetches dotnet native module (dotnet.native.js). */ export declare function getNative(root?: string): Promise; /** Fetches dotnet runtime module (dotnet.runtime.js). */ export declare function getRuntime(root?: string): Promise;