import { FunctionComponent, PropsWithChildren } from 'react'; interface RootContextType { enableResizingFlag: () => void; disableResizingFlag: () => void; isResizing: boolean; } export declare const RootContextProvider: FunctionComponent; export declare const useRootContext: () => RootContextType; export {};