import { Transaction } from "@mysten/sui/transactions";

//#region src/helpers.d.ts
declare function isSubName(name: string): boolean;
/**
 * Checks if a name is a nested subname.
 * A nested subdomain is a subdomain that is a subdomain of another subdomain.
 * @param name The name to check (e.g test.example.sub.sui)
 */
declare function isNestedSubName(name: string): boolean;
/**
 * The years must be between 1 and 5.
 */
declare function validateYears(years: number): void;
declare function getConfigType(suinsPackageV1: string, innerType: string): string;
declare function getDomainType(suinsPackageV1: string): string;
declare function getPricelistConfigType(suinsPackageId: string): string;
declare function getRenewalPricelistConfigType(suinsPackageId: string): string;
declare function getCoinDiscountConfigType(paymentPackageId: string): string;
//#endregion
export { getCoinDiscountConfigType, getConfigType, getDomainType, getPricelistConfigType, getRenewalPricelistConfigType, isNestedSubName, isSubName, validateYears };
//# sourceMappingURL=helpers.d.mts.map