export { FileSystem } from '../io/file-system';
/**
 * Options for the TAVMediaWASM.
 */
export interface TAVWasmOptions {
    /**
     * A base url where the preload files should related to
     */
    baseUrl?: string;
    /**
     * A function to get url of the wasm related file
     */
    locateFile?: (wasmFileName: string) => string;
    [otherProp: string]: any;
}
/**
 * Initialize the TAVMediaWasm.
 * @param wasmModule The TAVWasmOptions object
 */
export declare function initializeWasm(wasmModule: TAVWasmOptions): Promise<void>;
