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