/**
 * Yields values in the sequence 0,1,2..∞ except for the ones in the `excluded` set.
 */
export declare function naturalsExcept(excluded: Set<number>): Generator<number, number, unknown>;
