import type { Vec2, Vec3 } from '../../../math'; import type { RefPlane } from '../types'; type $$ComponentProps = { ref_plane: RefPlane; scene_size?: Vec3; ranges: { x: Vec2; y: Vec2; z: Vec2; }; }; declare const ReferencePlane: import("svelte").Component<$$ComponentProps, {}, "">; type ReferencePlane = ReturnType; export default ReferencePlane;