import type { ReactNode } from "react";
interface iForProps {
each: any[] | undefined | null;
children: (item: any, index: number) => any;
emptyState?: ReactNode | string | null;
}
export declare const For: ({ each, children, emptyState, }: iForProps) => ReactNode | null;
export {};