import { SketchGeometryTypes, SketchCollection } from "../types/index.js"; /** * If sketch collection passes sketchTest, then returns new collection * with mergeSketchColl sketches appended and updated bbox */ export declare function includeVirtualSketch(sketchColl: SketchCollection, mergeSketchColl: SketchCollection, sketchTest: (collection: SketchCollection) => boolean): SketchCollection; export declare const isTruthyAttributeValue: (value: unknown) => boolean;