export interface DeleteModalProps {
    isOpen: boolean;
    onClose: () => void;
    onDelete: () => void;
    aircraftCallSign: string;
    isMultipleSelection?: boolean;
    aircraftCount?: number;
    isLoading?: boolean;
    t: (key: string) => string;
}
export declare const DeleteModal: React.FC<DeleteModalProps>;
