/** * ScanningStep Component * * Step showing plugin scanning progress. * * @since v1.43.1 */ import type React from 'react'; export interface ScanningStepProps { /** Production server path being scanned */ prodPath: string; /** Test server path being scanned */ testPath: string; } export declare function ScanningStep({ prodPath }: ScanningStepProps): React.ReactElement; //# sourceMappingURL=ScanningStep.d.ts.map