import { AnimationTriggerMetadata } from '@angular/animations'; export interface AnimationStyle { [key: string]: string | number; } export declare const attrAnimation: (name: string, off: AnimationStyle, on: AnimationStyle, timings: string, stepsOn?: AnimationStyle[] | undefined, stepsOff?: AnimationStyle[] | undefined) => AnimationTriggerMetadata; export declare const structAnimation: (name: string, off: AnimationStyle, on: AnimationStyle, timings: string, stepsOn?: AnimationStyle[] | undefined, stepsOff?: AnimationStyle[] | undefined) => AnimationTriggerMetadata; export interface AnimationsDescriptor { name?: string; value?: any; values?: any[]; timing?: string; } export declare const Animations: any;