import { IDeviceStrategy, DeviceInfo, SessionOptions } from './IDeviceStrategy'; /** * Strategy for iOS Safari to prevent jetsam memory kills. * WebKit 26+ has a known bug with ONNX Runtime JSEP mode that causes memory exhaustion. * This strategy forces pure WASM execution without GPU acceleration. * See: https://github.com/microsoft/onnxruntime/issues/26827 */ export declare class IOSSafariStrategy implements IDeviceStrategy { getDeviceInfo(): DeviceInfo; getSessionOptions(_debug: boolean): SessionOptions; shouldUseSequentialLoading(): boolean; }