import { SpringConfig } from 'remotion'; import Animation from './Animation'; import AnimationOptions from './AnimationOptions'; export interface FadeOptions extends Omit> { /** * The element's opacity will be animated to this value. * * **Examples:** * - 0 means the element will become fully invisible. * - 1 means the element will become fully opaque. * */ to: number; /** * The opacity that is used at the start of the animation. _Defaults to `1`._ * * **Note:** * To achieve a fade in animation, set `initial` to `0`. */ initial?: number; /** * Number of frames for which the fade animation runs. _Defaults to `15` frames._ */ duration?: number; } /** * The `Fade` animation animates the opacity of an element. */ declare const Fade: (options: FadeOptions) => Animation; export default Fade; //# sourceMappingURL=Fade.d.ts.map