1 | import Translater from '../translater';
|
2 | import { Options as BScrollOptions } from '../Options';
|
3 | import Animater from './Base';
|
4 | import Transition from './Transition';
|
5 | import Animation from './Animation';
|
6 | export { Animater, Transition, Animation };
|
7 | export default function createAnimater(element: HTMLElement, translater: Translater, options: BScrollOptions): Transition | Animation;
|