/** * Converts an iterable into one that emits the object used by the [`iterator` directive]( * https://lwc.dev/guide/html_templates#iterator). */ export declare function toIteratorDirective(iterable: Iterable): Generator<{ value: T; index: number; first: boolean; last: boolean; }>; //# sourceMappingURL=to-iterator-directive.d.ts.map