/// import * as React from 'react'; import { Point } from './types'; type Fun = (_: React.MouseEvent) => Point; declare const StageContext: React.Context; type SvgStageProps = { viewBox: string; height?: string | number; width?: string | number; style?: React.CSSProperties; children: React.ReactNode; }; declare const SvgStage: React.FC; export { SvgStage, StageContext }; //# sourceMappingURL=stage.d.ts.map