declare module 'react-frame-component' { import * as React from 'react'; export interface FrameComponentProps extends React.IframeHTMLAttributes, React.RefAttributes { head?: React.ReactNode | undefined; mountTarget?: string | undefined; initialContent?: string | undefined; contentDidMount?: (() => void) | undefined; contentDidUpdate?: (() => void) | undefined; children: React.ReactNode; } const FrameComponent: React.ForwardRefExoticComponent; export default FrameComponent; export interface FrameContextProps { document?: HTMLDocument; window?: Window; } export const FrameContext: React.Context; export const FrameContextProvider: React.Provider; export const FrameContextConsumer: React.Consumer; export function useFrame(): FrameContextProps; }