///
import type { BaseTypeHelperFn, Fallback, ProxyType } from "../../types";
export interface ForProps> extends Fallback {
each: T | null | undefined;
children: (item: T[number], index: number) => React.ReactNode;
}
type BaseForType = {
>(props: X & ForProps): React.ReactNode;
};
interface BaseForTypeFn extends BaseTypeHelperFn {
type: BaseForType;
}
export type ForType = ProxyType;
export {};