import type { CliContractsDocument, CliContractsConfig } from "./schema.js"; export declare class ParseError extends Error { readonly filePath: string; readonly cause?: Error | undefined; constructor(message: string, filePath: string, cause?: Error | undefined); } export declare function parseContractFile(filePath: string): Promise; export declare function parseContractString(content: string, filePath?: string): CliContractsDocument; export declare function parseConfigFile(filePath: string): Promise; export declare function parseConfigString(content: string, filePath?: string): CliContractsConfig; //# sourceMappingURL=parser.d.ts.map