import { AnimationTriggerMetadata } from '@angular/animations'; import { IAnimationOptions } from '../common/interfaces'; export interface IRotateOutDownRightAnimationOptions extends IAnimationOptions { /** * Angle - number of degrees at which end animation. * * Default -45 */ degrees?: number; } export declare function rotateOutDownRightAnimation(options?: IRotateOutDownRightAnimationOptions): AnimationTriggerMetadata; export declare function rotateOutDownRightOnLeaveAnimation(options?: IRotateOutDownRightAnimationOptions): AnimationTriggerMetadata;