type Format = 'onnx' | 'tflite' | 'keras' | 'executorch' | 'torchscript' | 'savedmodel' | 'gguf' | 'unknown'; declare function detectFormat(bytes: Uint8Array, filename?: string): Format; export { type Format, detectFormat };