'use client';

import { createContext } from 'react';

import type { DocumentContextType } from './shared/types.js';

export default createContext<DocumentContextType>(null);
