import React from 'react'; import type { Subnet } from '../../schemas/network-plan.schema.js'; export interface EditNetworkDialogProps { subnet: Subnet; baseNetwork: string; existingSubnets: Subnet[]; onSubmit: (networkAddress: string, lock: boolean) => void; onCancel: () => void; } export declare const EditNetworkDialog: React.FC;