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