import type { ICopy } from "@thi.ng/api"; import { AGen } from "./agen.js"; /** * Returns new gen yielding always the same given value `x`. * * @param x - */ export declare const constant: (x: T) => Const; export declare class Const extends AGen implements ICopy> { copy(): Const; next(): T; } //# sourceMappingURL=const.d.ts.map