import type { Feature } from "./feature.js"; import { createVisualElement } from "../state/create-visual-element.js"; export interface FeatureBundle { renderer: typeof createVisualElement; features: Array; } export declare const domAnimation: FeatureBundle;