import { type SandboxValue } from "./values.js"; export type SandboxIterator = { readonly generator?: true; next(value?: SandboxValue): Promise>; return?(value?: SandboxValue): Promise>; throw?(error?: SandboxValue): Promise>; }; export declare function getSandboxIterator(value: SandboxValue): SandboxIterator | undefined;