import { MaybeSignal, Signal, SignalLike } from "../scope.js"; import { Template } from "../template.js"; /** * `For` is a component that can be used to render a list of items. */ export declare const For: (props: { each?: MaybeSignal; key?: (item: T, index: number) => string | number; children?: (item: Signal, index: Signal, arr: SignalLike) => Template; }) => Template;