import type { $Transition, AsTag, Options, VariantType } from "../types/index.js"; export declare function resolveVariant(definition?: Options["animate"], variants?: Options["variants"], custom?: Options["custom"]): VariantType | undefined; export declare function hasChanged(a: any, b: any): boolean; export declare function shallowCompare(next: any[], prev: any[]): boolean; export declare function addUniqueItem(array: T[], item: T): void; export declare function removeItem(array: T[], item: T): void; export declare function getOptions(options: $Transition, key: string): $Transition; export declare function isCssVar(name: string): boolean; export declare const noopReturn: (v: V) => V; export declare function isNumber(value: any): boolean; export declare const svgElements: readonly ["animate", "circle", "defs", "desc", "ellipse", "g", "image", "line", "filter", "marker", "mask", "metadata", "path", "pattern", "polygon", "polyline", "rect", "stop", "svg", "switch", "symbol", "text", "tspan", "use", "view", "clipPath", "feBlend", "feColorMatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feDistantLight", "feDropShadow", "feFlood", "feFuncA", "feFuncB", "feFuncG", "feFuncR", "feGaussianBlur", "feImage", "feMerge", "feMergeNode", "feMorphology", "feOffset", "fePointLight", "feSpecularLighting", "feSpotLight", "feTile", "feTurbulence", "foreignObject", "linearGradient", "radialGradient", "textPath"]; type UnionStringArray> = T[number]; export type SVGElements = UnionStringArray; export declare function isSVGElement(as: AsTag): as is SVGElements; export {};