import type { GifState } from './props'; export declare const parseGif: ({ src, controller, }: { src: string; controller: AbortController; }) => Promise; export declare const parseWithWorker: (src: string) => { prom: Promise; cancel: () => void; };