import { ScreenshotData, ScreenshotOptions } from '../typings'; import { BrowsersOption } from './use-browser-options'; interface ReturnType { browserOptions: BrowsersOption; loadSetting: (screenshotData: ScreenshotData, force?: boolean) => void; screenshotOptions: ScreenshotOptions; } export declare const useLoadScreenshotSettings: () => ReturnType; export {};