/** * Loads the core model file. * * @param {string} pretrained_model_name_or_path The path to the directory containing the model file. * @param {string} fileName The base name of the model file (without suffix or extension). * @param {import('./hub.js').PretrainedModelOptions} options Additional options for loading the model. * @param {string} suffix The suffix to append to the file name (e.g., '_q4', '_quantized'). * @returns {Promise} A Promise that resolves to the model file buffer or path. */ export function getCoreModelFile(pretrained_model_name_or_path: string, fileName: string, options: import("./hub.js").PretrainedModelOptions, suffix: string): Promise; /** * Loads external data files for a model. * * @param {string} pretrained_model_name_or_path The path to the directory containing the model files. * @param {string} fileName The base name of the model file (without suffix or extension). * @param {string} suffix The suffix to append to the file name (e.g., '_q4'). * @param {import('./hub.js').PretrainedModelOptions} options Additional options for loading the model. * @param {import('./hub.js').ExternalData|Record|undefined} use_external_data_format External data format configuration. * @param {any} [session_options] Optional session options that may contain externalData configuration. * @returns {Promise>} A Promise that resolves to an array of external data files. */ export function getModelDataFiles(pretrained_model_name_or_path: string, fileName: string, suffix: string, options: import("./hub.js").PretrainedModelOptions, use_external_data_format: import("./hub.js").ExternalData | Record | undefined, session_options?: any): Promise>; //# sourceMappingURL=model-loader.d.ts.map