export interface StabilizeOptions { shakiness?: number; smoothing?: number; zoom?: number; signal?: AbortSignal; } /** * Run pass 1 (analyse) + pass 2 (transform). Returns the path of the * transforms file (kept for inspection / re-use). */ export declare function stabilize(inputPath: string, outputPath: string, opts?: StabilizeOptions): Promise<{ output: string; transformsPath: string; }>; //# sourceMappingURL=stabilize.d.ts.map