import React from 'react'; import { ScreenshotTestTargetType } from '../typings'; interface Options { inProgress?: boolean; target?: ScreenshotTestTargetType; reqBy?: string; } export declare const useScreenshotUpdateState: (reqBy: string, target?: ScreenshotTestTargetType) => { handleClose: () => void; runDiffTest: () => void; setIsLoadingFinish: React.Dispatch>; updateInf: Options; }; export {};