import React, { Context } from "react"; interface FrameContextType { document: Document | undefined; window: Window | undefined; } export declare const FrameContext: Context; export declare const useFrame: () => FrameContextType; export declare const FrameContextProvider: React.Provider, FrameContextConsumer: React.Consumer; export {};