import type { SuiObjectChange, SuiTransactionBlockResponse } from "@mysten/sui/client"; export type SuiObjectChangeExceptPublished = Extract; /** * Extract selected object changes from a tx response. * * @param resp - The tx response to extract objects from. * @param kind - The kind of object change to extract. * @param typeRegex - Regular expression to match the object type. */ export declare function respToObjs(a: { resp: SuiTransactionBlockResponse; kind: SuiObjectChangeExceptPublished["type"]; regex?: RegExp; }): SuiObjectChangeExceptPublished[];