import type { GIF } from "./Types/GIF"; import type { GIFProgressCallbackFunction } from "./Types/GIFProgressCallbackFunction"; export declare function getGIFLoopAmount(gif: GIF): number; export declare function decodeGIF(gifURL: string, progressCallback?: GIFProgressCallbackFunction, avgAlpha?: boolean): Promise;