import * as React from 'react'; import type { TLShapeUtilsMap } from '../TLShapeUtil'; import type { Inputs } from '../inputs'; import type { TLBounds, TLCallbacks, TLPageState, TLShape } from '../types'; export interface TLContextType { id?: string; callbacks: Partial>; shapeUtils: TLShapeUtilsMap; rPageState: React.MutableRefObject; rSelectionBounds: React.MutableRefObject; inputs: Inputs; bounds: TLBounds; } export declare const TLContext: React.Context>; export declare function useTLContext(): TLContextType; //# sourceMappingURL=useTLContext.d.ts.map