import type { LottieProps } from './types'; type Params = Pick & { currentFrame: number; totalFrames: number; }; export declare const getLottieFrame: ({ currentFrame, direction, loop, totalFrames, }: Params) => number; export {};