/** * Global Library Table Manager * Registers JLC libraries in KiCad's global sym-lib-table and fp-lib-table * Works cross-platform: macOS, Windows, Linux */ interface TableUpdateResult { path: string; created: boolean; modified: boolean; entriesAdded: number; } export interface GlobalRegistrationResult { success: boolean; version: string; symLibTable: TableUpdateResult; fpLibTable: TableUpdateResult; libraryStubs: { symbolsCreated: string[]; directoriesCreated: string[]; }; errors: string[]; } /** * Ensure EasyEDA library is registered in global sym-lib-table and fp-lib-table */ export declare function ensureGlobalEasyEDALibrary(): Promise; export declare function ensureGlobalLibraryTables(): Promise; export {}; //# sourceMappingURL=global-lib-table.d.ts.map