import { type AnimationReferenceMetadata } from '../../animations/types.js';
export type Animation = 'grow' | 'fade' | 'slide' | 'none';
export type AnimationOptions = {
    keyframe: KeyframeAnimationOptions;
    step?: object;
};
export declare const bodyAnimations: Map<string, Map<string, ((options: AnimationOptions) => AnimationReferenceMetadata) | ((options: AnimationOptions) => AnimationReferenceMetadata)>>;
export declare const contentAnimations: Map<string, Map<string, ((options: AnimationOptions) => AnimationReferenceMetadata) | ((options: AnimationOptions) => AnimationReferenceMetadata)>>;
