import { Opt } from "@effect-ts-app/core/Option"; import type * as fc from "fast-check"; import * as S from "./_schema.js"; /** * @tsplus type ets/Schema/Arbitrary/Gen */ export type Gen = { (_: typeof fc): fc.Arbitrary; }; export declare const interpreters: ((schema: S.SchemaAny) => Opt<() => Gen>)[]; declare function for_(schema: S.Schema): Gen; export { for_ as for }; //# sourceMappingURL=_arbitrary.d.ts.map