import { MassActionsSidebarConfig } from '../types'; import { default as React } from 'react'; export declare const useMassActionsSidebar: ({ isCollapsed, setIsCollapsed, calculatePositionForState, calculatePosition, setTranslateX, shouldApplySidebarOffsetRef, sidebarConfig, getContainerWidth, }: { isCollapsed: boolean; setIsCollapsed: React.Dispatch>; calculatePositionForState: (targetCollapsed: boolean) => number | undefined; calculatePosition: () => void; setTranslateX: React.Dispatch>; shouldApplySidebarOffsetRef: React.MutableRefObject; sidebarConfig?: MassActionsSidebarConfig; getContainerWidth: () => number; }) => { isSidebarOpen: boolean; sidebarWidth: number; wasAutoCollapsedRef: React.MutableRefObject; };