import type { IProjectionNode } from "framer-motion"; export interface NodeGroup { add: (node: IProjectionNode) => void; remove: (node: IProjectionNode) => void; dirty: VoidFunction; } export declare function nodeGroup(): NodeGroup;