export default AnnotationListView; declare class AnnotationListView extends React.Component { static defaultProps: { offset: number; animationFramePadding: number; animationSpeed: number; bezierEasing: number[]; annotationPosition: string; }; constructor(props: Readonly); constructor(props: any, context?: any); componentWillMount(): void; setTweenFromAnnotations: ({ annotations, width, height }: { annotations: any; width: any; height: any; }) => void; tween: any; updateEasing([a, b, c, d]: [any, any, any, any]): void; ease: BezierEasing.EasingFunction | undefined; update: (n: any) => void; componentWillReceiveProps(newProps: any, newContext: any): void; updateView(newProps: any): void; onNext: (annotation: any, key: any) => (() => any) | null; onPrevious: (annotation: any, key: any) => (() => any) | null; render(): any; } import React from "react"; import BezierEasing from "bezier-easing"; //# sourceMappingURL=AnnotationListView.d.ts.map