export { default as onnx } from "./onnx_pb.js";
/**
 * ONNX importer
 */
export default class ONNXImporter {
    /**
     * Load onnx model.
     * @param {Uint8Array | ArrayBuffer | Blob} buffer File
     * @returns {import("../graph").LayerObject[]} Objects represented the graph
     */
    static load(buffer: Uint8Array | ArrayBuffer | Blob): import("../graph").LayerObject[];
}
