import { CSSProperties, FC, ReactNode } from "react"; import { Animation } from "./types"; interface AnimatorProps { children: ReactNode | ReactNode[]; animation: Animation; style?: CSSProperties; className?: string; } declare const Animator: FC; export default Animator;