import type { IotaClient, NetworkId } from '@iota/iota-sdk/client'; import type { TransactionObjectArgument } from '@iota/iota-sdk/transactions'; import type { BaseRulePackageIds } from '../constants.js'; export * from './kiosk.js'; export * from './transfer-policy.js'; /** * A valid argument for any of the Kiosk functions. */ export type ObjectArgument = string | TransactionObjectArgument; /** * The Client Options for Both KioskClient & TransferPolicyManager. */ export type KioskClientOptions = { client: IotaClient; network: NetworkId; packageIds?: BaseRulePackageIds; }; //# sourceMappingURL=index.d.ts.map