import type { CliContractsDocument } from "../schema.js"; export declare class ResolveError extends Error { readonly filePath: string; readonly cause?: Error | undefined; constructor(message: string, filePath: string, cause?: Error | undefined); } export interface ResolveResult { document: CliContractsDocument; sourcePath: string; basePaths: string[]; } type AnyRecord = Record; export declare function resolveContractRaw(raw: AnyRecord, filePath: string): Promise; export declare function resolveContractFile(filePath: string): Promise; export declare function resolveContractString(content: string, filePath?: string): Promise; export {}; //# sourceMappingURL=resolve.d.ts.map