import React from 'react'; type Props = { ani: string; children: React.ReactNode; index: number; }; declare function ComponentBlock({ ani, children, index }: Props): JSX.Element; export default ComponentBlock;