import React from 'react'; declare type DebugContextType = { portalContainerRef?: React.RefObject; disableCollisionChecking?: boolean; disableLock?: boolean; viewportGap?: number; }; declare type DebugContextProviderProps = DebugContextType & { children: React.ReactNode; }; export declare function DebugContextProvider({ children, ...debugContext }: DebugContextProviderProps): JSX.Element; export declare function useDebugContext(): DebugContextType; export {};