export type TBrowserSafeguardsSettings = Readonly<{ shouldBlockDragAndDrop?: boolean; shouldBlockContextMenu?: boolean; shouldBlockBackspaceKey?: boolean; }>; export declare const defaultBrowserSafeguardsSettings: TBrowserSafeguardsSettings; export declare function setBrowserSafeguards(window: Window, { shouldBlockDragAndDrop, shouldBlockContextMenu, shouldBlockBackspaceKey }?: TBrowserSafeguardsSettings): void;