export interface ResolveCommandOptions { file?: string; format?: "yaml" | "json"; } export interface ResolveCommandResult { document: unknown; source_path: string; base_paths: string[]; output: string; } export declare function runResolve(contractFile: string, options?: ResolveCommandOptions): Promise; //# sourceMappingURL=resolve.d.ts.map