import React from 'react'; import type { SpaceAllocationReport } from '../../core/models/network-plan.js'; export interface AvailableSpaceDialogProps { report: SpaceAllocationReport | undefined; onClose: () => void; } export declare const AvailableSpaceDialog: React.FC;