1 | import { AnimationProps } from '@antv/f-engine';
|
2 | import { GuideProps } from '../withGuide';
|
3 | export interface LottieGuideProps extends GuideProps {
|
4 | points?: {
|
5 | x: number;
|
6 | y: number;
|
7 | }[] | null;
|
8 | data?: string;
|
9 | offsetX?: number | string | (string | number)[];
|
10 | offsetY?: number | string | (string | number)[];
|
11 | animation: AnimationProps | ((points?: any, chart?: any) => AnimationProps);
|
12 | options?: {
|
13 | loop: boolean | number;
|
14 | autoplay: boolean;
|
15 | };
|
16 | }
|
17 | declare const _default: (props: LottieGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
|
18 | export default _default;
|