import { ImageDiffResult } from '../api/typings'; import { Dispatch, SetStateAction } from 'react'; export interface UseGlobalImageDiffResults { imageDiffResult: ImageDiffResult[]; setImageDiffResult: Dispatch>; } export declare const useGlobalImageDiffResults: () => UseGlobalImageDiffResults;