import { ICSSInJSStyle } from '@fluentui/styles'; import { FelaRenderer, FelaRendererParam } from './types'; /** * Fela plugin for disabling animations. The animations are disabled or not based on the * props' disableAnimations param. If the value of the prop is true, all animation related * styles are removed. * * Caution! Infinite recursion is possible in case if style object has links to self in the props * tree. */ export declare const felaDisableAnimationsPlugin: (styles: ICSSInJSStyle, type: string, renderer?: FelaRenderer | undefined, props?: Partial | undefined) => ICSSInJSStyle;