/// import { ICoordinates } from "../ICoordinates"; export declare const editingCellContext: { useState: () => ICoordinates | null; useRef: () => { readonly current: ICoordinates | null; }; useSetter: () => (action: import("react").SetStateAction) => void; Provider: ({ children }: { children: import("react").ReactNode; }) => JSX.Element; };