import { type stringliteral } from '../types/strings.types.js'; export interface ElementAnimation { keyframes: Keyframe[]; rtlKeyframes?: Keyframe[]; options?: KeyframeAnimationOptions; } export interface ElementAnimationMap { [animationName: string]: ElementAnimation; } export type Direction = 'ltr' | 'rtl' | stringliteral; export interface GetAnimationOptions { dir?: Direction; } export declare const setDefaultAnimation: (animationName: string, animation: ElementAnimation | null) => void; export declare const getAnimation: (el: Element, animationName: string, options?: GetAnimationOptions) => ElementAnimation; export declare const getDefaultAnimation: (animationName: string, options?: GetAnimationOptions) => ElementAnimation; //# sourceMappingURL=animation-registry.d.ts.map