import React from 'react'; import { type PropsWithChildren } from 'react'; type A11yFocusFrameContextType = { hasFocusLock: boolean; setHasFocusLock: (v: boolean) => void; focusLockId: symbol | null; setFocusLockId: (v: symbol | null) => void; }; export declare const useFocusFrameContext: () => A11yFocusFrameContextType | undefined; export declare const A11yFrameProvider: React.FC; export {}; //# sourceMappingURL=A11yFocusFrameProviderContext.d.ts.map