/** * JarMigrationDialog Component * * Prompts user whether to also migrate the server JAR when migrating plugins. * When multiple test JARs exist, shows a picker to select which one. * * @since v1.50.5 * @updated v2.5.13 - Added multi-JAR picker */ import type React from 'react'; import type { ServerJarInfo } from '../../../core/scanner.js'; export interface JarMigrationDialogProps { testJar: string | null; testJars?: ServerJarInfo[]; prodJar: string | null; onConfirm: (migrateJar: boolean, selectedJarPath?: string) => void; onCancel: () => void; isActive?: boolean; } /** * Dialog for choosing whether to migrate server JAR along with plugins */ export declare function JarMigrationDialog({ testJar, testJars, prodJar, onConfirm, onCancel, isActive }: JarMigrationDialogProps): React.ReactElement; //# sourceMappingURL=JarMigrationDialog.d.ts.map