import { Action } from "./types";
import actionNames from "../action-names";
import { BrowserFeature } from "../../../constants/browser";
type SetBrowserFeaturesAction = Action<typeof actionNames.SET_BROWSER_FEATURES, {
    browserFeatures: Record<string, BrowserFeature[]>;
}>;
export declare const setBrowserFeatures: (payload: SetBrowserFeaturesAction['payload']) => SetBrowserFeaturesAction;
export type BrowsersAction = SetBrowserFeaturesAction;
export {};
