import { type ReactNode } from "react";
interface Props<T> {
    render: (item: T, index: number) => ReactNode;
    of: T[];
}
declare const Each: <T>({ render, of }: Props<T>) => ReactNode;
export default Each;
