import { Schema } from "effect"; /** * Bech32 address format schema (human-readable addresses) * Following CIP-0019 encoding requirements * * @since 2.0.0 * @category schemas */ export declare const PaymentAddress: Schema.brand, "PaymentAddress">; /** * Type representing a payment address string in bech32 format * * @since 2.0.0 * @category model */ export type PaymentAddress = Schema.Schema.Type; /** * Check if the given value is a valid PaymentAddress * * @example * import { PaymentAddress } from "@lucid-evolution/experimental"; * import assert from "assert"; * * const isValid = PaymentAddress.isPaymentAddress("addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x"); * assert(isValid === true); * * @since 2.0.0 * @category predicates */ export declare const isPaymentAddress: (u: unknown, overrideOptions?: import("effect/SchemaAST").ParseOptions | number) => u is string & import("effect/Brand").Brand<"PaymentAddress">; //# sourceMappingURL=PaymentAddress.d.ts.map