import { ITxOutRef, IUTxO, TxOutRefStr } from "@harmoniclabs/cardano-ledger-ts";
export type CanResolveToUTxO = IUTxO | ITxOutRef | TxOutRefStr;
export declare function canResolveToUTxO(stuff: any): stuff is CanResolveToUTxO;
export declare function cloneCanResolveToUTxO(stuff: CanResolveToUTxO): CanResolveToUTxO;
export declare function shouldResolveToUTxO(stuff: any): stuff is (ITxOutRef | TxOutRefStr);
