import { default as React } from 'react'; export type LaunchAnimationPayload = { direction: 'toDiamond'; poolStartIndex: number; diamondId: string | number; diamondLevel: number; count: number; color?: string; } | { direction: 'toPool'; poolStartIndex: number; diamondId: string | number; diamondLevel: number; count: number; color?: string; }; export interface VoteAnimationProps { zIndex?: number; } declare const VoteAnimation: React.FC; export default VoteAnimation; //# sourceMappingURL=VoteAnimation.d.ts.map