import React from 'react'; import type { NetworkMethod } from '../../hooks/useConnectDeviceModal'; interface ConnectionConfigFieldsProps { connectionType?: string; networkMethod: NetworkMethod; profileRequired: boolean; profileOptions: Array<{ label: string; value: number; }>; getText: (key: string) => string; } declare const ConnectionConfigFields: React.FC; export default ConnectionConfigFields;