import type { ThirdwebClient } from "../../client/client.js"; import type { CompilerMetadata } from "../actions/compiler-metadata.js"; type FetchSourceFilesFromMetadataOptions = { client: ThirdwebClient; publishedMetadata: CompilerMetadata; }; type ContractSource = { filename: string; source: string; }; /** * Fetches source files from metadata. * * @param options - The options for fetching source files. * @returns A promise that resolves to an array of ContractSource objects. * @internal */ export declare function fetchSourceFilesFromMetadata(options: FetchSourceFilesFromMetadataOptions): Promise; export {}; //# sourceMappingURL=source-files.d.ts.map