import { type SignerConfig } from "../helpers/config.js"; import { type ContractTransaction } from "../helpers/ethers.js"; import { type TableIdentifier } from "./contract.js"; export interface TransferParams { /** * Name or tableId and chainId of the token to be transferred. */ tableName: string | TableIdentifier; /** * Address to receive the ownership of the given token ID. */ to: string; } export declare function safeTransferFrom({ signer }: SignerConfig, params: TransferParams): Promise; //# sourceMappingURL=transfer.d.ts.map