import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IRoyaltiesProvider, IRoyaltiesProviderInterface } from "../IRoyaltiesProvider"; export declare class IRoyaltiesProvider__factory { static readonly abi: readonly [{ readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "token"; readonly type: "address"; }, { readonly internalType: "uint256"; readonly name: "tokenId"; readonly type: "uint256"; }]; readonly name: "getRoyalties"; readonly outputs: readonly [{ readonly components: readonly [{ readonly internalType: "address payable"; readonly name: "account"; readonly type: "address"; }, { readonly internalType: "uint96"; readonly name: "value"; readonly type: "uint96"; }]; readonly internalType: "struct LibPart.Part[]"; readonly name: ""; readonly type: "tuple[]"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; static createInterface(): IRoyaltiesProviderInterface; static connect(address: string, signerOrProvider: Signer | Provider): IRoyaltiesProvider; }