/** * PanelConnectionStep Component * * Step for configuring server panel connection (Pterodactyl, AMP, etc.). * * @since v2.0.1 */ import type React from 'react'; import type { PanelSettings, WizardStepProps } from './wizard-types.js'; export interface PanelConnectionStepProps extends Pick { /** Current panel settings */ value: PanelSettings; /** Called when panel settings change */ onChange: (settings: PanelSettings) => void; } export declare function PanelConnectionStep({ value, onChange, onNext, onBack, onCancel, isActive }: PanelConnectionStepProps): React.ReactElement; //# sourceMappingURL=PanelConnectionStep.d.ts.map