/** * @deprecated will be replaced in 0.11.0. * Please use `import { UnionContractAddress } from "@rarible/types"` */ export type ContractAddress = string & { __IS_CONTRACT_ADDRESS__: true; }; /** * @deprecated will be replaced in 0.11.0. * Please use `import { toUnionContractAddress } from "@rarible/types"` */ export declare function toContractAddress(value: string): ContractAddress;