import { IRotItem, TEffectOptions, TEffectPoolItem } from '../../../types';
declare const useEffect: ({ data, width, height }: IRotItem, effectPool: {
    [key: string]: TEffectPoolItem;
}, effect: string | string[], options: TEffectOptions | TEffectOptions[]) => Promise<{
    data: Uint8Array<ArrayBufferLike>;
    width: number;
    height: number;
}>;
export { useEffect };
