import type { ThirdwebClient } from "../../client/client.js"; /** * @internal */ export type FetchContractMetadata = { client: ThirdwebClient; uri: string; }; /** * Fetches the metadata for a token. * * @param options - The options for fetching the token metadata. * @returns The token metadata. * @internal */ export declare function fetchContractMetadata(options: FetchContractMetadata): Promise<{ [key: string]: unknown; } | undefined>; //# sourceMappingURL=fetchContractMetadata.d.ts.map