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