import * as fc from "fast-check"; import { DamlNumeric } from "../../core/types/daml-numeric.js"; import { DamlParty } from "../../core/types/daml-party.js"; import { DamlLfType } from "../../daml-lf/model/daml-lf-type.js"; export type DamlTestingValue = string | bigint | DamlParty | DamlNumeric; export declare function createDamlValueArbitrary(type: DamlLfType, options?: { readonly valueParties?: readonly string[]; }): fc.Arbitrary;