import type { Abi } from "abitype"; /** * @contract */ export type CompilerMetadata = { name: string; abi: Abi; metadata: Record & { sources: Record; output: { abi: Abi; devdoc?: Record>; userdoc?: Record>; }; }; info: { title?: string; author?: string; details?: string; notice?: string; }; licenses: string[]; isPartialAbi?: boolean; zk_version?: string; }; /** * Formats the compiler metadata into a standardized format. * @param metadata - The compiler metadata to be formatted. * @returns The formatted metadata. * @internal */ export declare function formatCompilerMetadata(metadata: any): CompilerMetadata; //# sourceMappingURL=compiler-metadata.d.ts.map