import type { CliOptions, CliResult } from "./types.js"; export declare function getCliPath(): string; export declare function runKicadCli(options: CliOptions): Promise; export declare function checkCliAvailable(): Promise; export declare function getCliVersion(): Promise; /** Resolve a file path, making it absolute if relative */ export declare function resolveFile(file: string, cwd?: string): string;