import type { CollectOptions, Entry, TransformContext } from '../types.js'; export declare const collectValues: (transformContext: Pick) => (key: any, options?: CollectOptions) => any[]; export declare const collectParentValues: (transformContext: Pick) => (key: any, options?: CollectOptions) => any[]; export declare const collect: (entry: Entry, entryMap: Map, options: CollectOptions) => T[]; export declare const waitFor: (transformContext: Pick) => (id: string, waitTimeout?: number) => Promise;