import { Color4, Quaternion, Vector3 } from "@babylonjs/core"; interface iArgs { prop?: any; } export declare const createGizmoSystem: ({ prop }?: iArgs) => { update: () => void; addLines: (lines: Vector3[], colors?: Color4[]) => void; addRotation: (rotation: Quaternion, center?: Vector3) => void; markDirty: () => boolean; }; export declare type iGizmoSystem = ReturnType; export {};