import type { WithBlockchain } from "../../blockchains/index.js";
export type AuctionId = WithBlockchain & {
    __IS_AUCTION_ID__: true;
};
export declare function toAuctionId(value: string): AuctionId;
