import type { SourceUnit } from 'solidity-ast'; import type { ProjectPathsConfig, ResolvedFile } from 'hardhat/types'; import type { ExposedConfig } from './config'; export interface SolcOutput { sources: { [file in string]: { ast: SourceUnit; id: number; }; }; } interface Config { paths: ProjectPathsConfig; exposed: ExposedConfig; } export declare const getExposedPath: (config: Config) => string; export declare function getExposed(solcOutput: SolcOutput, include: (sourceName: string) => boolean, config: Config): Map; export {}; //# sourceMappingURL=core.d.ts.map